OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'mojo_variables.gypi', | 7 'mojo_variables.gypi', |
8 ], | 8 ], |
9 'target_defaults' : { | 9 'target_defaults' : { |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 'src/mojo/public/cpp/bindings/lib/validation_util.cc', | 134 'src/mojo/public/cpp/bindings/lib/validation_util.cc', |
135 'src/mojo/public/cpp/bindings/lib/validation_util.h', | 135 'src/mojo/public/cpp/bindings/lib/validation_util.h', |
136 # This comes from the mojo_interface_bindings_cpp_sources dependency. | 136 # This comes from the mojo_interface_bindings_cpp_sources dependency. |
137 '>@(mojom_generated_sources)', | 137 '>@(mojom_generated_sources)', |
138 ], | 138 ], |
139 'dependencies': [ | 139 'dependencies': [ |
140 'mojo_interface_bindings_cpp_sources', | 140 'mojo_interface_bindings_cpp_sources', |
141 ], | 141 ], |
142 }, | 142 }, |
143 { | 143 { |
| 144 # GN version: //mojo/public/cpp/system |
| 145 'target_name': 'mojo_cpp_system', |
| 146 'type': 'static_library', |
| 147 'include_dirs': [ |
| 148 '../..' |
| 149 ], |
| 150 'sources': [ |
| 151 'src/mojo/public/cpp/system/buffer.h', |
| 152 'src/mojo/public/cpp/system/core.h', |
| 153 'src/mojo/public/cpp/system/data_pipe.h', |
| 154 'src/mojo/public/cpp/system/functions.h', |
| 155 'src/mojo/public/cpp/system/handle.h', |
| 156 'src/mojo/public/cpp/system/macros.h', |
| 157 'src/mojo/public/cpp/system/message_pipe.h', |
| 158 ], |
| 159 'dependencies': [ |
| 160 'mojo_system', |
| 161 ], |
| 162 }, |
| 163 { |
144 # GN version: //mojo/public/js | 164 # GN version: //mojo/public/js |
145 'target_name': 'mojo_js_bindings', | 165 'target_name': 'mojo_js_bindings', |
146 'type': 'static_library', | 166 'type': 'static_library', |
147 'include_dirs': [ | 167 'include_dirs': [ |
148 '../..' | 168 '../..' |
149 ], | 169 ], |
150 'sources': [ | 170 'sources': [ |
151 'src/mojo/public/js/constants.cc', | 171 'src/mojo/public/js/constants.cc', |
152 'src/mojo/public/js/constants.h', | 172 'src/mojo/public/js/constants.h', |
153 ], | 173 ], |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 'dependencies': [ | 383 'dependencies': [ |
364 'mojo_interface_bindings_java_sources', | 384 'mojo_interface_bindings_java_sources', |
365 'mojo_public_java', | 385 'mojo_public_java', |
366 ], | 386 ], |
367 'includes': [ '../../build/java.gypi' ], | 387 'includes': [ '../../build/java.gypi' ], |
368 }, | 388 }, |
369 ], | 389 ], |
370 }], | 390 }], |
371 ], | 391 ], |
372 } | 392 } |
OLD | NEW |