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 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', | 18 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', |
18 '../../../skia/skia.gyp:skia', | 19 '../../../skia/skia.gyp:skia', |
19 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', | 20 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', |
20 '../../../ui/accessibility/accessibility.gyp:ax_gen', | 21 '../../../ui/accessibility/accessibility.gyp:ax_gen', |
21 '../message_lib/message_lib.gyp:ipc_message_lib', | 22 '../message_lib/message_lib.gyp:ipc_message_lib', |
22 ], | 23 ], |
23 'sources': [ | 24 'sources': [ |
24 'mutate.cc', | 25 'mutate.cc', |
25 'rand_util.h', | 26 'rand_util.h', |
26 'rand_util.cc', | 27 'rand_util.cc', |
27 ], | 28 ], |
28 'include_dirs': [ | 29 'include_dirs': [ |
29 '../../..', | 30 '../../..', |
30 ], | 31 ], |
31 }, | 32 }, |
32 { | 33 { |
33 'target_name': 'ipc_fuzzer_generate', | 34 'target_name': 'ipc_fuzzer_generate', |
34 'type': 'executable', | 35 'type': 'executable', |
35 'dependencies': [ | 36 'dependencies': [ |
36 '../../../base/base.gyp:base', | 37 '../../../base/base.gyp:base', |
37 '../../../chrome/chrome.gyp:common', | 38 '../../../chrome/chrome.gyp:common', |
38 '../../../ipc/ipc.gyp:ipc', | 39 '../../../ipc/ipc.gyp:ipc', |
| 40 '../../../media/cast/transport/cast_transport.gyp:cast_transport', |
39 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', | 41 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', |
40 '../../../skia/skia.gyp:skia', | 42 '../../../skia/skia.gyp:skia', |
41 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', | 43 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', |
42 '../../../ui/accessibility/accessibility.gyp:ax_gen', | 44 '../../../ui/accessibility/accessibility.gyp:ax_gen', |
43 '../message_lib/message_lib.gyp:ipc_message_lib', | 45 '../message_lib/message_lib.gyp:ipc_message_lib', |
44 ], | 46 ], |
45 'sources': [ | 47 'sources': [ |
46 'generate.cc', | 48 'generate.cc', |
47 'rand_util.h', | 49 'rand_util.h', |
48 'rand_util.cc', | 50 'rand_util.cc', |
(...skipping 11 matching lines...) Expand all Loading... |
60 ], | 62 ], |
61 'sources': [ | 63 'sources': [ |
62 'message_util.cc', | 64 'message_util.cc', |
63 ], | 65 ], |
64 'include_dirs': [ | 66 'include_dirs': [ |
65 '../../..', | 67 '../../..', |
66 ], | 68 ], |
67 }, | 69 }, |
68 ], | 70 ], |
69 } | 71 } |
OLD | NEW |