| 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 ":sources", | 8 ":sources", |
| 9 ":init_commandline", | 9 ":init_commandline", |
| 10 ] | 10 ] |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "service_connector.h", | 41 "service_connector.h", |
| 42 "service_provider_impl.h", | 42 "service_provider_impl.h", |
| 43 ] | 43 ] |
| 44 | 44 |
| 45 deps = [ | 45 deps = [ |
| 46 "//base", | 46 "//base", |
| 47 "//mojo/application/public/interfaces", | 47 "//mojo/application/public/interfaces", |
| 48 "//mojo/common", | 48 "//mojo/common", |
| 49 "//mojo/environment:chromium", | 49 "//mojo/environment:chromium", |
| 50 "//mojo/message_pump", | 50 "//mojo/message_pump", |
| 51 "//third_party/mojo/src/mojo/public/cpp/bindings", | 51 "//mojo/public/cpp/bindings", |
| 52 "//third_party/mojo/src/mojo/public/cpp/system", | 52 "//mojo/public/cpp/system", |
| 53 ] | 53 ] |
| 54 } | 54 } |
| 55 | 55 |
| 56 source_set("init_commandline") { | 56 source_set("init_commandline") { |
| 57 sources = [ | 57 sources = [ |
| 58 "lib/init_commandline.cc", | 58 "lib/init_commandline.cc", |
| 59 ] | 59 ] |
| 60 } | 60 } |
| 61 | 61 |
| 62 source_set("content_handler") { | 62 source_set("content_handler") { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 85 | 85 |
| 86 public_deps = [ | 86 public_deps = [ |
| 87 ":cpp", | 87 ":cpp", |
| 88 ] | 88 ] |
| 89 | 89 |
| 90 deps = [ | 90 deps = [ |
| 91 "//base", | 91 "//base", |
| 92 "//base/test:test_support", | 92 "//base/test:test_support", |
| 93 "//mojo/application/public/interfaces:interfaces_cpp_sources", | 93 "//mojo/application/public/interfaces:interfaces_cpp_sources", |
| 94 "//mojo/logging", | 94 "//mojo/logging", |
| 95 "//third_party/mojo/src/mojo/public/cpp/bindings", | 95 "//mojo/public/cpp/bindings", |
| 96 "//third_party/mojo/src/mojo/public/cpp/environment", | 96 "//mojo/public/cpp/environment", |
| 97 "//third_party/mojo/src/mojo/public/cpp/system", | 97 "//mojo/public/cpp/system", |
| 98 "//testing/gtest", | 98 "//testing/gtest", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 data_deps = [] | 101 data_deps = [] |
| 102 if (is_android) { | 102 if (is_android) { |
| 103 data_deps += [ "//mojo/android" ] | 103 data_deps += [ "//mojo/android" ] |
| 104 } | 104 } |
| 105 } | 105 } |
| OLD | NEW |