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

Side by Side Diff: content/content_common.gypi

Issue 2102183002: Fix dependency issue in content_common (gyp) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 5 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
« no previous file with comments | « no previous file | third_party/WebKit/public/blink.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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../cc/cc.gyp:cc', 8 '../cc/cc.gyp:cc',
9 '../cc/ipc/cc_ipc.gyp:cc_ipc', 9 '../cc/ipc/cc_ipc.gyp:cc_ipc',
10 '../components/tracing.gyp:tracing', 10 '../components/tracing.gyp:tracing',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', 46 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
47 '../ui/gfx/ipc/skia/gfx_ipc_skia.gyp:gfx_ipc_skia', 47 '../ui/gfx/ipc/skia/gfx_ipc_skia.gyp:gfx_ipc_skia',
48 '../ui/gl/gl.gyp:gl', 48 '../ui/gl/gl.gyp:gl',
49 '../ui/gl/init/gl_init.gyp:gl_init', 49 '../ui/gl/init/gl_init.gyp:gl_init',
50 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', 50 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs',
51 '../url/url.gyp:url_lib', 51 '../url/url.gyp:url_lib',
52 '../url/ipc/url_ipc.gyp:url_ipc', 52 '../url/ipc/url_ipc.gyp:url_ipc',
53 'content.gyp:common_features', 53 'content.gyp:common_features',
54 'content_common_mojo_bindings.gyp:content_common_mojo_bindings', 54 'content_common_mojo_bindings.gyp:content_common_mojo_bindings',
55 ], 55 ],
56 # content/public/common/common_param_traits_macros.h includes a generated
57 # header from blink.gyp:mojo_bindings. We need to be sure any targets that
58 # depend on content_common also depend upon blink.gyp:mojo_bindings so
59 # that the header is generated before compile starts.
60 'hard_dependency': '1',
56 'include_dirs': [ 61 'include_dirs': [
57 '..', 62 '..',
58 ], 63 ],
59 'actions': [ 64 'actions': [
60 { 65 {
61 'action_name': 'generate_webkit_version', 66 'action_name': 'generate_webkit_version',
62 'inputs': [ 67 'inputs': [
63 '<(script)', 68 '<(script)',
64 '<(lastchange)', 69 '<(lastchange)',
65 '<(template)', 70 '<(template)',
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 ], 668 ],
664 }], 669 }],
665 ['enable_ipc_fuzzer==1', { 670 ['enable_ipc_fuzzer==1', {
666 'sources': [ 671 'sources': [
667 'common/external_ipc_dumper.cc', 672 'common/external_ipc_dumper.cc',
668 'common/external_ipc_dumper.h', 673 'common/external_ipc_dumper.h',
669 ], 674 ],
670 }], 675 }],
671 ], 676 ],
672 } 677 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/public/blink.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698