| 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("//mojo/generate_mojo_shell_assets_list.gni") | 5 import("//mojo/generate_mojo_shell_assets_list.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.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 | 9 |
| 10 # We don't support building in the component build since mojo apps are | 10 # We don't support building in the component build since mojo apps are |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 ":native_application_support", | 123 ":native_application_support", |
| 124 "//base", | 124 "//base", |
| 125 "//base/third_party/dynamic_annotations", | 125 "//base/third_party/dynamic_annotations", |
| 126 "//base:base_static", | 126 "//base:base_static", |
| 127 "//components/devtools_service/public/cpp", | 127 "//components/devtools_service/public/cpp", |
| 128 "//components/devtools_service/public/interfaces", | 128 "//components/devtools_service/public/interfaces", |
| 129 "//mojo/application/public/cpp", | 129 "//mojo/application/public/cpp", |
| 130 "//mojo/common:tracing_impl", | 130 "//mojo/common:tracing_impl", |
| 131 "//mojo/message_pump", | 131 "//mojo/message_pump", |
| 132 "//mojo/services/network/public/interfaces", | 132 "//mojo/services/network/public/interfaces", |
| 133 "//mojo/services/tracing:bindings", | 133 "//mojo/services/tracing/public/cpp", |
| 134 "//mojo/services/tracing/public/interfaces", |
| 134 "//mojo/shell", | 135 "//mojo/shell", |
| 135 "//mojo/util:filename_util", | 136 "//mojo/util:filename_util", |
| 136 "//third_party/mojo/src/mojo/edk/system", | 137 "//third_party/mojo/src/mojo/edk/system", |
| 137 "//ui/gl", | 138 "//ui/gl", |
| 138 "//url", | 139 "//url", |
| 139 ] | 140 ] |
| 140 | 141 |
| 141 if (is_linux && !is_android) { | 142 if (is_linux && !is_android) { |
| 142 sources += [ | 143 sources += [ |
| 143 "linux_sandbox.cc", | 144 "linux_sandbox.cc", |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 ] | 482 ] |
| 482 | 483 |
| 483 deps = [ | 484 deps = [ |
| 484 "//base", | 485 "//base", |
| 485 "//mojo/application/public/cpp:test_support", | 486 "//mojo/application/public/cpp:test_support", |
| 486 "//mojo/runner/test:bindings", | 487 "//mojo/runner/test:bindings", |
| 487 "//mojo/services/network/public/interfaces", | 488 "//mojo/services/network/public/interfaces", |
| 488 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 489 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 489 ] | 490 ] |
| 490 } | 491 } |
| OLD | NEW |