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

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

Issue 171503004: Fix link of IPC fuzzer which broke when cast/ added. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 500s Created 6 years, 10 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') | tools/ipc_fuzzer/replay/replay.gyp » ('j') | 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/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
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 }
OLDNEW
« no previous file with comments | « tools/ipc_fuzzer/message_lib/message_lib.gyp ('k') | tools/ipc_fuzzer/replay/replay.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698