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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 ], | 123 ], |
124 }, | 124 }, |
125 { | 125 { |
126 # GN version: //mojo/public/js/bindings | 126 # GN version: //mojo/public/js/bindings |
127 'target_name': 'mojo_js_bindings', | 127 'target_name': 'mojo_js_bindings', |
128 'type': 'static_library', | 128 'type': 'static_library', |
129 'include_dirs': [ | 129 'include_dirs': [ |
130 '../..' | 130 '../..' |
131 ], | 131 ], |
132 'sources': [ | 132 'sources': [ |
133 'js/bindings/constants.cc', | 133 'js/constants.cc', |
134 'js/bindings/constants.h', | 134 'js/constants.h', |
135 ], | 135 ], |
136 }, | 136 }, |
137 { | 137 { |
138 # GN version: //mojo/public/cpp/environment:standalone | 138 # GN version: //mojo/public/cpp/environment:standalone |
139 'target_name': 'mojo_environment_standalone', | 139 'target_name': 'mojo_environment_standalone', |
140 'type': 'static_library', | 140 'type': 'static_library', |
141 'sources': [ | 141 'sources': [ |
142 'c/environment/async_waiter.h', | 142 'c/environment/async_waiter.h', |
143 'c/environment/logger.h', | 143 'c/environment/logger.h', |
| 144 'cpp/environment/async_waiter.h', |
144 'cpp/environment/environment.h', | 145 'cpp/environment/environment.h', |
| 146 'cpp/environment/lib/async_waiter.cc', |
145 'cpp/environment/lib/default_async_waiter.cc', | 147 'cpp/environment/lib/default_async_waiter.cc', |
146 'cpp/environment/lib/default_async_waiter.h', | 148 'cpp/environment/lib/default_async_waiter.h', |
147 'cpp/environment/lib/default_logger.cc', | 149 'cpp/environment/lib/default_logger.cc', |
148 'cpp/environment/lib/default_logger.h', | 150 'cpp/environment/lib/default_logger.h', |
149 'cpp/environment/lib/environment.cc', | 151 'cpp/environment/lib/environment.cc', |
150 'cpp/environment/lib/logging.cc', | 152 'cpp/environment/lib/logging.cc', |
151 'cpp/environment/logging.h', | 153 'cpp/environment/logging.h', |
152 ], | 154 ], |
153 'include_dirs': [ | 155 'include_dirs': [ |
154 '../..', | 156 '../..', |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 }, | 360 }, |
359 'dependencies': [ | 361 'dependencies': [ |
360 'mojo_public_java', | 362 'mojo_public_java', |
361 ], | 363 ], |
362 'includes': [ '../../build/java.gypi' ], | 364 'includes': [ '../../build/java.gypi' ], |
363 }, | 365 }, |
364 ], | 366 ], |
365 }], | 367 }], |
366 ], | 368 ], |
367 } | 369 } |
OLD | NEW |