| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'ipc_fuzzer_mutate', | 11 'target_name': 'ipc_fuzzer_mutate', |
| 12 'type': 'executable', | 12 'type': 'executable', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../../../base/base.gyp:base', | 14 '../../../base/base.gyp:base', |
| 15 '../../../chrome/chrome.gyp:common', | 15 '../../../chrome/chrome.gyp:common', |
| 16 '../../../ipc/ipc.gyp:ipc', | 16 '../../../ipc/ipc.gyp:ipc', |
| 17 '../../../media/cast/transport/cast_transport.gyp:cast_transport', | 17 '../../../media/cast/cast.gyp:cast_transport', |
| 18 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', | 18 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', |
| 19 '../../../skia/skia.gyp:skia', | 19 '../../../skia/skia.gyp:skia', |
| 20 '../../../third_party/libjingle/libjingle.gyp:libjingle', | 20 '../../../third_party/libjingle/libjingle.gyp:libjingle', |
| 21 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', | 21 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', |
| 22 '../../../ui/accessibility/accessibility.gyp:ax_gen', | 22 '../../../ui/accessibility/accessibility.gyp:ax_gen', |
| 23 '../message_lib/message_lib.gyp:ipc_message_lib', | 23 '../message_lib/message_lib.gyp:ipc_message_lib', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'mutate.cc', | 26 'mutate.cc', |
| 27 'rand_util.h', | 27 'rand_util.h', |
| 28 'rand_util.cc', | 28 'rand_util.cc', |
| 29 ], | 29 ], |
| 30 'include_dirs': [ | 30 'include_dirs': [ |
| 31 '../../..', | 31 '../../..', |
| 32 ], | 32 ], |
| 33 'defines': [ | 33 'defines': [ |
| 34 'USE_CUPS', | 34 'USE_CUPS', |
| 35 ], | 35 ], |
| 36 }, | 36 }, |
| 37 { | 37 { |
| 38 'target_name': 'ipc_fuzzer_generate', | 38 'target_name': 'ipc_fuzzer_generate', |
| 39 'type': 'executable', | 39 'type': 'executable', |
| 40 'dependencies': [ | 40 'dependencies': [ |
| 41 '../../../base/base.gyp:base', | 41 '../../../base/base.gyp:base', |
| 42 '../../../chrome/chrome.gyp:common', | 42 '../../../chrome/chrome.gyp:common', |
| 43 '../../../ipc/ipc.gyp:ipc', | 43 '../../../ipc/ipc.gyp:ipc', |
| 44 '../../../media/cast/transport/cast_transport.gyp:cast_transport', | 44 '../../../media/cast/cast.gyp:cast_transport', |
| 45 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', | 45 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', |
| 46 '../../../skia/skia.gyp:skia', | 46 '../../../skia/skia.gyp:skia', |
| 47 '../../../third_party/libjingle/libjingle.gyp:libjingle', | 47 '../../../third_party/libjingle/libjingle.gyp:libjingle', |
| 48 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', | 48 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', |
| 49 '../../../ui/accessibility/accessibility.gyp:ax_gen', | 49 '../../../ui/accessibility/accessibility.gyp:ax_gen', |
| 50 '../message_lib/message_lib.gyp:ipc_message_lib', | 50 '../message_lib/message_lib.gyp:ipc_message_lib', |
| 51 ], | 51 ], |
| 52 'sources': [ | 52 'sources': [ |
| 53 'generate.cc', | 53 'generate.cc', |
| 54 'rand_util.h', | 54 'rand_util.h', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 73 ], | 73 ], |
| 74 'include_dirs': [ | 74 'include_dirs': [ |
| 75 '../../..', | 75 '../../..', |
| 76 ], | 76 ], |
| 77 'defines': [ | 77 'defines': [ |
| 78 'USE_CUPS', | 78 'USE_CUPS', |
| 79 ], | 79 ], |
| 80 }, | 80 }, |
| 81 ], | 81 ], |
| 82 } | 82 } |
| OLD | NEW |