| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/connector.h', |
| 203 'shell/public/cpp/identity.h', |
| 203 'shell/public/cpp/initialize_base_and_icu.cc', | 204 'shell/public/cpp/initialize_base_and_icu.cc', |
| 204 'shell/public/cpp/initialize_base_and_icu.h', | 205 'shell/public/cpp/initialize_base_and_icu.h', |
| 205 'shell/public/cpp/interface_binder.h', | 206 'shell/public/cpp/interface_binder.h', |
| 206 'shell/public/cpp/interface_factory.h', | 207 'shell/public/cpp/interface_factory.h', |
| 207 'shell/public/cpp/interface_factory_impl.h', | 208 'shell/public/cpp/interface_factory_impl.h', |
| 208 'shell/public/cpp/interface_registry.h', | 209 'shell/public/cpp/interface_registry.h', |
| 209 'shell/public/cpp/lib/application_runner.cc', | 210 'shell/public/cpp/lib/application_runner.cc', |
| 210 'shell/public/cpp/lib/connection_impl.cc', | 211 'shell/public/cpp/lib/connection_impl.cc', |
| 211 'shell/public/cpp/lib/connection_impl.h', | 212 'shell/public/cpp/lib/connection_impl.h', |
| 212 'shell/public/cpp/lib/connector_impl.cc', | 213 'shell/public/cpp/lib/connector_impl.cc', |
| 213 'shell/public/cpp/lib/connector_impl.h', | 214 'shell/public/cpp/lib/connector_impl.h', |
| 215 'shell/public/cpp/lib/identity.cc', |
| 214 'shell/public/cpp/lib/interface_factory_binder.h', | 216 'shell/public/cpp/lib/interface_factory_binder.h', |
| 215 'shell/public/cpp/lib/interface_registry.cc', | 217 'shell/public/cpp/lib/interface_registry.cc', |
| 216 'shell/public/cpp/lib/message_loop_ref.cc', | 218 'shell/public/cpp/lib/message_loop_ref.cc', |
| 217 'shell/public/cpp/lib/names.cc', | 219 'shell/public/cpp/lib/names.cc', |
| 218 'shell/public/cpp/lib/shell_client.cc', | 220 'shell/public/cpp/lib/shell_client.cc', |
| 219 'shell/public/cpp/lib/shell_connection.cc', | 221 'shell/public/cpp/lib/shell_connection.cc', |
| 220 'shell/public/cpp/message_loop_ref.h', | 222 'shell/public/cpp/message_loop_ref.h', |
| 221 'shell/public/cpp/names.h', | 223 'shell/public/cpp/names.h', |
| 222 'shell/public/cpp/shell.h', | 224 'shell/public/cpp/shell.h', |
| 223 'shell/public/cpp/shell_client.h', | 225 'shell/public/cpp/shell_client.h', |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 '../build/isolate.gypi', | 387 '../build/isolate.gypi', |
| 386 ], | 388 ], |
| 387 'sources': [ | 389 'sources': [ |
| 388 'mojo_common_unittests.isolate', | 390 'mojo_common_unittests.isolate', |
| 389 ], | 391 ], |
| 390 }, | 392 }, |
| 391 ], | 393 ], |
| 392 }], | 394 }], |
| 393 ] | 395 ] |
| 394 } | 396 } |
| OLD | NEW |