| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 # We don't support building in the component build since mojo apps are | 9 # We don't support building in the component build since mojo apps are |
| 10 # inherently components. | 10 # inherently components. |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 "//base", | 155 "//base", |
| 156 "//base/third_party/dynamic_annotations", | 156 "//base/third_party/dynamic_annotations", |
| 157 "//base:base_static", | 157 "//base:base_static", |
| 158 "//mojo/application", | 158 "//mojo/application", |
| 159 "//mojo/application_manager", | 159 "//mojo/application_manager", |
| 160 "//mojo/common", | 160 "//mojo/common", |
| 161 "//mojo/common:tracing_impl", | 161 "//mojo/common:tracing_impl", |
| 162 "//mojo/edk/system", | 162 "//mojo/edk/system", |
| 163 "//mojo/public/cpp/bindings", | 163 "//mojo/public/cpp/bindings", |
| 164 "//mojo/public/interfaces/application", | 164 "//mojo/public/interfaces/application", |
| 165 "//mojo/services/public/interfaces/network", | 165 "//mojo/services/network/public/interfaces", |
| 166 "//shell/domain_socket", | 166 "//shell/domain_socket", |
| 167 "//mojo/spy", | 167 "//mojo/spy", |
| 168 "//services/tracing:bindings", | 168 "//services/tracing:bindings", |
| 169 "//url", | 169 "//url", |
| 170 ] | 170 ] |
| 171 | 171 |
| 172 if (is_win) { | 172 if (is_win) { |
| 173 deps -= [ "//shell/domain_socket" ] | 173 deps -= [ "//shell/domain_socket" ] |
| 174 } | 174 } |
| 175 | 175 |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 | 438 |
| 439 deps -= [ | 439 deps -= [ |
| 440 ":lib", | 440 ":lib", |
| 441 ":external_application_registrar_connection", | 441 ":external_application_registrar_connection", |
| 442 ":external_application_registrar_bindings", | 442 ":external_application_registrar_bindings", |
| 443 "//shell/domain_socket", | 443 "//shell/domain_socket", |
| 444 "//shell/domain_socket:tests", | 444 "//shell/domain_socket:tests", |
| 445 ] | 445 ] |
| 446 } | 446 } |
| 447 } | 447 } |
| OLD | NEW |