| 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 # GYP version: mojo/mojo_base.gyp:mojo_application_base | 5 # GYP version: mojo/mojo_base.gyp:mojo_application_base |
| 6 source_set("cpp") { | 6 source_set("cpp") { |
| 7 public_deps = [ | 7 public_deps = [ |
| 8 ":init_commandline", | 8 ":init_commandline", |
| 9 ":sources", | 9 ":sources", |
| 10 ] | 10 ] |
| 11 } | 11 } |
| 12 | 12 |
| 13 # Like the target above, but without special commandline initialization that | 13 # Like the target above, but without special commandline initialization that |
| 14 # apps use. | 14 # apps use. |
| 15 source_set("cpp_for_chromium") { | 15 source_set("cpp_for_chromium") { |
| 16 public_deps = [ | 16 public_deps = [ |
| 17 ":sources", | 17 ":sources", |
| 18 ] | 18 ] |
| 19 } | 19 } |
| 20 | 20 |
| 21 source_set("sources") { | 21 source_set("sources") { |
| 22 sources = [ | 22 sources = [ |
| 23 "application_runner.h", | 23 "application_runner.h", |
| 24 "capabilities.h", |
| 24 "connect.h", | 25 "connect.h", |
| 25 "connection.h", | 26 "connection.h", |
| 26 "connector.h", | 27 "connector.h", |
| 27 "identity.h", | 28 "identity.h", |
| 28 "initialize_base_and_icu.cc", | 29 "initialize_base_and_icu.cc", |
| 29 "interface_binder.h", | 30 "interface_binder.h", |
| 30 "interface_factory.h", | 31 "interface_factory.h", |
| 31 "interface_factory_impl.h", | 32 "interface_factory_impl.h", |
| 32 "interface_registry.h", | 33 "interface_registry.h", |
| 33 "lib/application_runner.cc", | 34 "lib/application_runner.cc", |
| 35 "lib/capabilities.cc", |
| 34 "lib/connection_impl.cc", | 36 "lib/connection_impl.cc", |
| 35 "lib/connection_impl.h", | 37 "lib/connection_impl.h", |
| 36 "lib/connector_impl.cc", | 38 "lib/connector_impl.cc", |
| 37 "lib/connector_impl.h", | 39 "lib/connector_impl.h", |
| 38 "lib/identity.cc", | 40 "lib/identity.cc", |
| 39 "lib/interface_factory_binder.h", | 41 "lib/interface_factory_binder.h", |
| 40 "lib/interface_registry.cc", | 42 "lib/interface_registry.cc", |
| 41 "lib/message_loop_ref.cc", | 43 "lib/message_loop_ref.cc", |
| 42 "lib/names.cc", | 44 "lib/names.cc", |
| 43 "lib/shell_client.cc", | 45 "lib/shell_client.cc", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "//base/test:test_support", | 112 "//base/test:test_support", |
| 111 "//mojo/logging", | 113 "//mojo/logging", |
| 112 "//mojo/public/cpp/bindings", | 114 "//mojo/public/cpp/bindings", |
| 113 "//mojo/public/cpp/system", | 115 "//mojo/public/cpp/system", |
| 114 "//mojo/shell/background:lib", | 116 "//mojo/shell/background:lib", |
| 115 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 117 "//mojo/shell/public/interfaces:interfaces_cpp_sources", |
| 116 ] | 118 ] |
| 117 | 119 |
| 118 data_deps = [] | 120 data_deps = [] |
| 119 } | 121 } |
| OLD | NEW |