| 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("//third_party/mojo/src/mojo/public/mojo.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo.gni") |
| 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "//base:base_static", | 116 "//base:base_static", |
| 117 "//mojo/application", | 117 "//mojo/application", |
| 118 "//mojo/common", | 118 "//mojo/common", |
| 119 "//mojo/common:tracing_impl", | 119 "//mojo/common:tracing_impl", |
| 120 "//third_party/mojo/src/mojo/edk/system", | 120 "//third_party/mojo/src/mojo/edk/system", |
| 121 "//third_party/mojo/src/mojo/public/cpp/bindings", | 121 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 122 "//third_party/mojo/src/mojo/public/interfaces/application", | 122 "//third_party/mojo/src/mojo/public/interfaces/application", |
| 123 "//mojo/services/network/public/interfaces", | 123 "//mojo/services/network/public/interfaces", |
| 124 "//mojo/shell/application_manager", | 124 "//mojo/shell/application_manager", |
| 125 "//mojo/services/tracing:bindings", | 125 "//mojo/services/tracing:bindings", |
| 126 "//ui/gl", |
| 126 "//url", | 127 "//url", |
| 127 ] | 128 ] |
| 128 | 129 |
| 129 public_deps = [ | 130 public_deps = [ |
| 130 ":switches", | 131 ":switches", |
| 131 ] | 132 ] |
| 132 | 133 |
| 133 if (is_android) { | 134 if (is_android) { |
| 134 sources += [ | 135 sources += [ |
| 135 "android/android_handler.cc", | 136 "android/android_handler.cc", |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 "//third_party/mojo/src/mojo/public/cpp/system:system", | 404 "//third_party/mojo/src/mojo/public/cpp/system:system", |
| 404 | 405 |
| 405 #"//mojo/services/http_server/public/cpp", | 406 #"//mojo/services/http_server/public/cpp", |
| 406 #"//mojo/services/http_server/public/interfaces", | 407 #"//mojo/services/http_server/public/interfaces", |
| 407 "//mojo/services/network/public/interfaces", | 408 "//mojo/services/network/public/interfaces", |
| 408 "//mojo/shell/test:bindings", | 409 "//mojo/shell/test:bindings", |
| 409 ] | 410 ] |
| 410 | 411 |
| 411 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 412 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
| 412 } | 413 } |
| OLD | NEW |