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 { |
(...skipping 11 matching lines...) Expand all Loading... |
22 '../message_lib/message_lib.gyp:ipc_message_lib', | 22 '../message_lib/message_lib.gyp:ipc_message_lib', |
23 ], | 23 ], |
24 'sources': [ | 24 'sources': [ |
25 'mutate.cc', | 25 'mutate.cc', |
26 'rand_util.h', | 26 'rand_util.h', |
27 'rand_util.cc', | 27 'rand_util.cc', |
28 ], | 28 ], |
29 'include_dirs': [ | 29 'include_dirs': [ |
30 '../../..', | 30 '../../..', |
31 ], | 31 ], |
| 32 'defines': [ |
| 33 'USE_CUPS', |
| 34 ], |
32 }, | 35 }, |
33 { | 36 { |
34 'target_name': 'ipc_fuzzer_generate', | 37 'target_name': 'ipc_fuzzer_generate', |
35 'type': 'executable', | 38 'type': 'executable', |
36 'dependencies': [ | 39 'dependencies': [ |
37 '../../../base/base.gyp:base', | 40 '../../../base/base.gyp:base', |
38 '../../../chrome/chrome.gyp:common', | 41 '../../../chrome/chrome.gyp:common', |
39 '../../../ipc/ipc.gyp:ipc', | 42 '../../../ipc/ipc.gyp:ipc', |
40 '../../../media/cast/transport/cast_transport.gyp:cast_transport', | 43 '../../../media/cast/transport/cast_transport.gyp:cast_transport', |
41 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', | 44 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', |
42 '../../../skia/skia.gyp:skia', | 45 '../../../skia/skia.gyp:skia', |
43 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', | 46 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', |
44 '../../../ui/accessibility/accessibility.gyp:ax_gen', | 47 '../../../ui/accessibility/accessibility.gyp:ax_gen', |
45 '../message_lib/message_lib.gyp:ipc_message_lib', | 48 '../message_lib/message_lib.gyp:ipc_message_lib', |
46 ], | 49 ], |
47 'sources': [ | 50 'sources': [ |
48 'generate.cc', | 51 'generate.cc', |
49 'rand_util.h', | 52 'rand_util.h', |
50 'rand_util.cc', | 53 'rand_util.cc', |
51 ], | 54 ], |
52 'include_dirs': [ | 55 'include_dirs': [ |
53 '../../..', | 56 '../../..', |
54 ], | 57 ], |
| 58 'defines': [ |
| 59 'USE_CUPS', |
| 60 ], |
55 }, | 61 }, |
56 { | 62 { |
57 'target_name': 'ipc_message_util', | 63 'target_name': 'ipc_message_util', |
58 'type': 'executable', | 64 'type': 'executable', |
59 'dependencies': [ | 65 'dependencies': [ |
60 '../../../third_party/re2/re2.gyp:re2', | 66 '../../../third_party/re2/re2.gyp:re2', |
61 '../message_lib/message_lib.gyp:ipc_message_lib', | 67 '../message_lib/message_lib.gyp:ipc_message_lib', |
62 ], | 68 ], |
63 'sources': [ | 69 'sources': [ |
64 'message_util.cc', | 70 'message_util.cc', |
65 ], | 71 ], |
66 'include_dirs': [ | 72 'include_dirs': [ |
67 '../../..', | 73 '../../..', |
68 ], | 74 ], |
| 75 'defines': [ |
| 76 'USE_CUPS', |
| 77 ], |
69 }, | 78 }, |
70 ], | 79 ], |
71 } | 80 } |
OLD | NEW |