| 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/generate_mojo_shell_assets_list.gni") | 6 import("//mojo/generate_mojo_shell_assets_list.gni") |
| 7 import("//third_party/mojo/src/mojo/public/mojo.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo.gni") |
| 8 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 8 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 9 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 9 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 ] | 115 ] |
| 116 | 116 |
| 117 deps = [ | 117 deps = [ |
| 118 ":child_process_bindings", | 118 ":child_process_bindings", |
| 119 ":in_process_native_runner", | 119 ":in_process_native_runner", |
| 120 ":native_application_support", | 120 ":native_application_support", |
| 121 "//base", | 121 "//base", |
| 122 "//base/third_party/dynamic_annotations", | 122 "//base/third_party/dynamic_annotations", |
| 123 "//base:base_static", | 123 "//base:base_static", |
| 124 "//mojo/application", | 124 "//mojo/application", |
| 125 "//mojo/application/public/interfaces", |
| 125 "//mojo/common", | 126 "//mojo/common", |
| 126 "//mojo/common:tracing_impl", | 127 "//mojo/common:tracing_impl", |
| 127 "//mojo/util:filename_util", | 128 "//mojo/util:filename_util", |
| 128 "//third_party/mojo/src/mojo/edk/system", | 129 "//third_party/mojo/src/mojo/edk/system", |
| 129 "//third_party/mojo/src/mojo/public/cpp/bindings", | 130 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 130 "//third_party/mojo/src/mojo/public/interfaces/application", | |
| 131 "//mojo/services/network/public/interfaces", | 131 "//mojo/services/network/public/interfaces", |
| 132 "//mojo/shell", | 132 "//mojo/shell", |
| 133 "//mojo/services/tracing:bindings", | 133 "//mojo/services/tracing:bindings", |
| 134 "//ui/gl", | 134 "//ui/gl", |
| 135 "//url", | 135 "//url", |
| 136 ] | 136 ] |
| 137 | 137 |
| 138 public_deps = [ | 138 public_deps = [ |
| 139 ":switches", | 139 ":switches", |
| 140 ] | 140 ] |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 ] | 352 ] |
| 353 } | 353 } |
| 354 } | 354 } |
| 355 | 355 |
| 356 mojom("child_process_bindings") { | 356 mojom("child_process_bindings") { |
| 357 sources = [ | 357 sources = [ |
| 358 "child_process.mojom", | 358 "child_process.mojom", |
| 359 ] | 359 ] |
| 360 | 360 |
| 361 deps = [ | 361 deps = [ |
| 362 "//third_party/mojo/src/mojo/public/interfaces/application", | 362 "//mojo/application/public/interfaces", |
| 363 ] | 363 ] |
| 364 } | 364 } |
| 365 | 365 |
| 366 test("tests") { | 366 test("tests") { |
| 367 output_name = "mojo_runner_unittests" | 367 output_name = "mojo_runner_unittests" |
| 368 sources = [ | 368 sources = [ |
| 369 "child_process_host_unittest.cc", | 369 "child_process_host_unittest.cc", |
| 370 "data_pipe_peek_unittest.cc", | 370 "data_pipe_peek_unittest.cc", |
| 371 "in_process_native_runner_unittest.cc", | 371 "in_process_native_runner_unittest.cc", |
| 372 "native_runner_unittest.cc", | 372 "native_runner_unittest.cc", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 #"//mojo/services/http_server/public/interfaces", | 435 #"//mojo/services/http_server/public/interfaces", |
| 436 "//mojo/services/network/public/interfaces", | 436 "//mojo/services/network/public/interfaces", |
| 437 | 437 |
| 438 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 438 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 439 "//third_party/mojo/src/mojo/public/cpp/environment", | 439 "//third_party/mojo/src/mojo/public/cpp/environment", |
| 440 "//third_party/mojo/src/mojo/public/cpp/system:system", | 440 "//third_party/mojo/src/mojo/public/cpp/system:system", |
| 441 ] | 441 ] |
| 442 | 442 |
| 443 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 443 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
| 444 } | 444 } |
| OLD | NEW |