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

Side by Side Diff: mojo/mojom_bindings_generator_explicit.gypi

Issue 1808253002: Mojo's WTF dependencies should be set correctly regardless the path depth (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « mojo/mojom_bindings_generator.gypi ('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 'includes': [ 6 'includes': [
7 'mojom_bindings_generator_variables.gypi', 7 'mojom_bindings_generator_variables.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'variables': { 10 'variables': {
(...skipping 14 matching lines...) Expand all
25 ['mojom_variant=="none"', { 25 ['mojom_variant=="none"', {
26 'mojom_output_languages%': 'c++,javascript,java', 26 'mojom_output_languages%': 'c++,javascript,java',
27 }, { 27 }, {
28 'mojom_output_languages%': 'c++', 28 'mojom_output_languages%': 'c++',
29 }], 29 }],
30 ['for_blink=="true"', { 30 ['for_blink=="true"', {
31 'mojom_generator_wtf_arg%': [ 31 'mojom_generator_wtf_arg%': [
32 '--for_blink', 32 '--for_blink',
33 ], 33 ],
34 'wtf_dependencies%': [ 34 'wtf_dependencies%': [
35 'mojo_public.gyp:mojo_cpp_bindings_wtf_support', 35 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings_wtf_support',
36 '../third_party/WebKit/Source/wtf/wtf.gyp:wtf', 36 '<(DEPTH)/third_party/WebKit/Source/wtf/wtf.gyp:wtf',
37 ], 37 ],
38 }, { 38 }, {
39 'mojom_generator_wtf_arg%': [], 39 'mojom_generator_wtf_arg%': [],
40 'wtf_dependencies%': [], 40 'wtf_dependencies%': [],
41 }], 41 }],
42 ], 42 ],
43 }, 43 },
44 # Given mojom files as inputs, generate sources. These sources will be 44 # Given mojom files as inputs, generate sources. These sources will be
45 # exported to another target (via dependent_settings) to be compiled. This 45 # exported to another target (via dependent_settings) to be compiled. This
46 # keeps code generation separate from compilation, allowing the same sources 46 # keeps code generation separate from compilation, allowing the same sources
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 ], 151 ],
152 'additional_input_paths': [ 152 'additional_input_paths': [
153 '<@(mojom_bindings_generator_sources)', 153 '<@(mojom_bindings_generator_sources)',
154 '<@(mojom_files)', 154 '<@(mojom_files)',
155 ], 155 ],
156 'mojom_generated_sources': [ '<@(mojom_generated_outputs)' ], 156 'mojom_generated_sources': [ '<@(mojom_generated_outputs)' ],
157 }, 157 },
158 } 158 }
159 }, 159 },
160 } 160 }
OLDNEW
« no previous file with comments | « mojo/mojom_bindings_generator.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698