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

Side by Side Diff: third_party/mojo/mojom_bindings_generator_explicit.gypi

Issue 1409223004: mandoline: Add automatic tracing at mojo call sites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Safety rebase to ToT Created 5 years, 2 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
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 'mojom_base_output_dir': 10 'mojom_base_output_dir':
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 '<@(mojom_import_args)', 64 '<@(mojom_import_args)',
65 '-o', '<(SHARED_INTERMEDIATE_DIR)', 65 '-o', '<(SHARED_INTERMEDIATE_DIR)',
66 '--java_output_directory=<(java_out_dir)', 66 '--java_output_directory=<(java_out_dir)',
67 ], 67 ],
68 'message': 'Generating Mojo bindings from <@(mojom_files)', 68 'message': 'Generating Mojo bindings from <@(mojom_files)',
69 } 69 }
70 ], 70 ],
71 'conditions': [ 71 'conditions': [
72 ['require_interface_bindings==1', { 72 ['require_interface_bindings==1', {
73 'dependencies': [ 73 'dependencies': [
74 '<(DEPTH)/base/base.gyp:base',
74 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_interface_bindings_gener ation', 75 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_interface_bindings_gener ation',
75 ], 76 ],
76 }], 77 }],
77 ], 78 ],
78 # Prevent the generated sources from being injected into the "all" target by 79 # Prevent the generated sources from being injected into the "all" target by
79 # preventing the code generator from being directly depended on by the "all" 80 # preventing the code generator from being directly depended on by the "all"
80 # target. 81 # target.
81 'suppress_wildcard': '1', 82 'suppress_wildcard': '1',
82 'hard_dependency': '1', 83 'hard_dependency': '1',
83 'direct_dependent_settings': { 84 'direct_dependent_settings': {
(...skipping 27 matching lines...) Expand all
111 ], 112 ],
112 'additional_input_paths': [ 113 'additional_input_paths': [
113 '<@(mojom_bindings_generator_sources)', 114 '<@(mojom_bindings_generator_sources)',
114 '<@(mojom_files)', 115 '<@(mojom_files)',
115 ], 116 ],
116 'mojom_generated_sources': [ '<@(mojom_generated_outputs)' ], 117 'mojom_generated_sources': [ '<@(mojom_generated_outputs)' ],
117 }, 118 },
118 } 119 }
119 }, 120 },
120 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698