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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 'mojo_variables.gypi', | 10 'mojo_variables.gypi', |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 '../base/base.gyp:base', | 126 '../base/base.gyp:base', |
127 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 127 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
128 'mojo_common_lib', | 128 'mojo_common_lib', |
129 '<(mojo_system_for_component)', | 129 '<(mojo_system_for_component)', |
130 ], | 130 ], |
131 'sources': [ | 131 'sources': [ |
132 'environment/default_async_waiter_impl.cc', | 132 'environment/default_async_waiter_impl.cc', |
133 'environment/default_async_waiter_impl.h', | 133 'environment/default_async_waiter_impl.h', |
134 'environment/default_logger_impl.cc', | 134 'environment/default_logger_impl.cc', |
135 'environment/default_logger_impl.h', | 135 'environment/default_logger_impl.h', |
| 136 'environment/default_run_loop_impl.cc', |
| 137 'environment/default_run_loop_impl.h', |
136 ], | 138 ], |
137 'include_dirs': [ | 139 'include_dirs': [ |
138 '..', | 140 '..', |
139 ], | 141 ], |
140 }, | 142 }, |
141 { | 143 { |
142 # GN version: //mojo/application | 144 # GN version: //mojo/application |
143 'target_name': 'mojo_application_chromium', | 145 'target_name': 'mojo_application_chromium', |
144 'type': 'static_library', | 146 'type': 'static_library', |
145 'sources': [ | 147 'sources': [ |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 ], | 212 ], |
211 'variables': { | 213 'variables': { |
212 'java_in_dir': '<(DEPTH)/mojo/android/system', | 214 'java_in_dir': '<(DEPTH)/mojo/android/system', |
213 }, | 215 }, |
214 'includes': [ '../build/java.gypi' ], | 216 'includes': [ '../build/java.gypi' ], |
215 }, | 217 }, |
216 ] | 218 ] |
217 }] | 219 }] |
218 ] | 220 ] |
219 } | 221 } |
OLD | NEW |