# Copyright 2013 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. { 'variables': { 'chromium_code': 1, }, 'targets': [ { 'target_name': 'ipc_fuzzer_mutate', 'type': 'executable', 'dependencies': [ '../../../base/base.gyp:base', '../../../chrome/chrome.gyp:common', '../../../ipc/ipc.gyp:ipc', '../../../media/cast/cast.gyp:cast_transport', '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', '../../../skia/skia.gyp:skia', '../../../third_party/libjingle/libjingle.gyp:libjingle', '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', '../../../third_party/WebKit/public/blink.gyp:blink', '../../../ui/accessibility/accessibility.gyp:ax_gen', '../message_lib/message_lib.gyp:ipc_message_lib', ], 'sources': [ 'mutate.cc', 'rand_util.h', 'rand_util.cc', ], 'conditions': [ ['asan==1', { 'cflags!': [ # Compiling mutate.cc with ASan takes too long, see # http://crbug.com/360158. '-fsanitize=address', ], }], ], 'include_dirs': [ '../../..', ], 'defines': [ 'USE_CUPS', ], }, { 'target_name': 'ipc_fuzzer_generate', 'type': 'executable', 'dependencies': [ '../../../base/base.gyp:base', '../../../chrome/chrome.gyp:common', '../../../ipc/ipc.gyp:ipc', '../../../media/cast/cast.gyp:cast_transport', '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', '../../../skia/skia.gyp:skia', '../../../third_party/libjingle/libjingle.gyp:libjingle', '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', '../../../third_party/WebKit/public/blink.gyp:blink', '../../../ui/accessibility/accessibility.gyp:ax_gen', '../message_lib/message_lib.gyp:ipc_message_lib', ], 'sources': [ 'generate.cc', 'rand_util.h', 'rand_util.cc', ], 'conditions': [ ['asan==1', { 'cflags!': [ # Compiling generate.cc with ASan takes too long, see # http://crbug.com/360158. '-fsanitize=address', ], }], ], 'include_dirs': [ '../../..', ], 'defines': [ 'USE_CUPS', ], }, { 'target_name': 'ipc_message_util', 'type': 'executable', 'dependencies': [ '../../../third_party/re2/re2.gyp:re2', '../message_lib/message_lib.gyp:ipc_message_lib', ], 'sources': [ 'message_util.cc', ], 'include_dirs': [ '../../..', ], 'defines': [ 'USE_CUPS', ], }, ], }