| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 'includes': [ 'mojom_bindings_generator_explicit.gypi' ], | 192 'includes': [ 'mojom_bindings_generator_explicit.gypi' ], |
| 193 }, | 193 }, |
| 194 { | 194 { |
| 195 # GN version: //mojo/shell/public/cpp | 195 # GN version: //mojo/shell/public/cpp |
| 196 'target_name': 'mojo_application_base', | 196 'target_name': 'mojo_application_base', |
| 197 'type': 'static_library', | 197 'type': 'static_library', |
| 198 'sources': [ | 198 'sources': [ |
| 199 'shell/public/cpp/application_runner.h', | 199 'shell/public/cpp/application_runner.h', |
| 200 'shell/public/cpp/connect.h', | 200 'shell/public/cpp/connect.h', |
| 201 'shell/public/cpp/connection.h', | 201 'shell/public/cpp/connection.h', |
| 202 'shell/public/cpp/connector.h', |
| 202 'shell/public/cpp/initialize_base_and_icu.cc', | 203 'shell/public/cpp/initialize_base_and_icu.cc', |
| 203 'shell/public/cpp/initialize_base_and_icu.h', | 204 'shell/public/cpp/initialize_base_and_icu.h', |
| 204 'shell/public/cpp/interface_binder.h', | 205 'shell/public/cpp/interface_binder.h', |
| 205 'shell/public/cpp/interface_factory.h', | 206 'shell/public/cpp/interface_factory.h', |
| 206 'shell/public/cpp/interface_factory_impl.h', | 207 'shell/public/cpp/interface_factory_impl.h', |
| 207 'shell/public/cpp/interface_registry.h', | 208 'shell/public/cpp/interface_registry.h', |
| 208 'shell/public/cpp/lib/application_runner.cc', | 209 'shell/public/cpp/lib/application_runner.cc', |
| 209 'shell/public/cpp/lib/connection_impl.cc', | 210 'shell/public/cpp/lib/connection_impl.cc', |
| 210 'shell/public/cpp/lib/connection_impl.h', | 211 'shell/public/cpp/lib/connection_impl.h', |
| 212 'shell/public/cpp/lib/connector_impl.cc', |
| 213 'shell/public/cpp/lib/connector_impl.h', |
| 211 'shell/public/cpp/lib/interface_factory_binder.h', | 214 'shell/public/cpp/lib/interface_factory_binder.h', |
| 212 'shell/public/cpp/lib/interface_registry.cc', | 215 'shell/public/cpp/lib/interface_registry.cc', |
| 213 'shell/public/cpp/lib/shell_client.cc', | 216 'shell/public/cpp/lib/shell_client.cc', |
| 214 'shell/public/cpp/lib/shell_connection.cc', | 217 'shell/public/cpp/lib/shell_connection.cc', |
| 215 'shell/public/cpp/shell.h', | 218 'shell/public/cpp/shell.h', |
| 216 'shell/public/cpp/shell_client.h', | 219 'shell/public/cpp/shell_client.h', |
| 217 'shell/public/cpp/shell_connection.h', | 220 'shell/public/cpp/shell_connection.h', |
| 218 ], | 221 ], |
| 219 'dependencies': [ | 222 'dependencies': [ |
| 220 '../base/base.gyp:base_i18n', | 223 '../base/base.gyp:base_i18n', |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 '../build/isolate.gypi', | 340 '../build/isolate.gypi', |
| 338 ], | 341 ], |
| 339 'sources': [ | 342 'sources': [ |
| 340 'mojo_common_unittests.isolate', | 343 'mojo_common_unittests.isolate', |
| 341 ], | 344 ], |
| 342 }, | 345 }, |
| 343 ], | 346 ], |
| 344 }], | 347 }], |
| 345 ] | 348 ] |
| 346 } | 349 } |
| OLD | NEW |