Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: tools/ipc_fuzzer/mutate/mutate.gyp

Issue 322643002: Fix IPC fuzzer compilation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/ipc_fuzzer/message_lib/message_lib.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/cast.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 '../../../third_party/WebKit/public/blink.gyp:blink',
22 '../../../ui/accessibility/accessibility.gyp:ax_gen', 23 '../../../ui/accessibility/accessibility.gyp:ax_gen',
23 '../message_lib/message_lib.gyp:ipc_message_lib', 24 '../message_lib/message_lib.gyp:ipc_message_lib',
24 ], 25 ],
25 'sources': [ 26 'sources': [
26 'mutate.cc', 27 'mutate.cc',
27 'rand_util.h', 28 'rand_util.h',
28 'rand_util.cc', 29 'rand_util.cc',
29 ], 30 ],
30 'conditions': [ 31 'conditions': [
31 ['asan==1', { 32 ['asan==1', {
(...skipping 16 matching lines...) Expand all
48 'type': 'executable', 49 'type': 'executable',
49 'dependencies': [ 50 'dependencies': [
50 '../../../base/base.gyp:base', 51 '../../../base/base.gyp:base',
51 '../../../chrome/chrome.gyp:common', 52 '../../../chrome/chrome.gyp:common',
52 '../../../ipc/ipc.gyp:ipc', 53 '../../../ipc/ipc.gyp:ipc',
53 '../../../media/cast/cast.gyp:cast_transport', 54 '../../../media/cast/cast.gyp:cast_transport',
54 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc', 55 '../../../ppapi/ppapi_internal.gyp:ppapi_ipc',
55 '../../../skia/skia.gyp:skia', 56 '../../../skia/skia.gyp:skia',
56 '../../../third_party/libjingle/libjingle.gyp:libjingle', 57 '../../../third_party/libjingle/libjingle.gyp:libjingle',
57 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', 58 '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
59 '../../../third_party/WebKit/public/blink.gyp:blink',
58 '../../../ui/accessibility/accessibility.gyp:ax_gen', 60 '../../../ui/accessibility/accessibility.gyp:ax_gen',
59 '../message_lib/message_lib.gyp:ipc_message_lib', 61 '../message_lib/message_lib.gyp:ipc_message_lib',
60 ], 62 ],
61 'sources': [ 63 'sources': [
62 'generate.cc', 64 'generate.cc',
63 'rand_util.h', 65 'rand_util.h',
64 'rand_util.cc', 66 'rand_util.cc',
65 ], 67 ],
66 'conditions': [ 68 'conditions': [
67 ['asan==1', { 69 ['asan==1', {
(...skipping 23 matching lines...) Expand all
91 ], 93 ],
92 'include_dirs': [ 94 'include_dirs': [
93 '../../..', 95 '../../..',
94 ], 96 ],
95 'defines': [ 97 'defines': [
96 'USE_CUPS', 98 'USE_CUPS',
97 ], 99 ],
98 }, 100 },
99 ], 101 ],
100 } 102 }
OLDNEW
« no previous file with comments | « tools/ipc_fuzzer/message_lib/message_lib.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698