| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "//base", | 105 "//base", |
| 106 ] | 106 ] |
| 107 } | 107 } |
| 108 | 108 |
| 109 source_set("lib") { | 109 source_set("lib") { |
| 110 sources = [ | 110 sources = [ |
| 111 "child_process.cc", | 111 "child_process.cc", |
| 112 "child_process.h", | 112 "child_process.h", |
| 113 "child_process_host.cc", | 113 "child_process_host.cc", |
| 114 "child_process_host.h", | 114 "child_process_host.h", |
| 115 "command_line_util.cc", |
| 116 "command_line_util.h", |
| 115 "context.cc", | 117 "context.cc", |
| 116 "context.h", | 118 "context.h", |
| 117 "filename_util.cc", | 119 "filename_util.cc", |
| 118 "filename_util.h", | 120 "filename_util.h", |
| 119 "out_of_process_native_runner.cc", | 121 "out_of_process_native_runner.cc", |
| 120 "out_of_process_native_runner.h", | 122 "out_of_process_native_runner.h", |
| 121 "task_runners.cc", | 123 "task_runners.cc", |
| 122 "task_runners.h", | 124 "task_runners.h", |
| 123 "url_resolver.cc", | 125 "url_resolver.cc", |
| 124 "url_resolver.h", | 126 "url_resolver.h", |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 | 354 |
| 353 deps = [ | 355 deps = [ |
| 354 "//third_party/mojo/src/mojo/public/interfaces/application", | 356 "//third_party/mojo/src/mojo/public/interfaces/application", |
| 355 ] | 357 ] |
| 356 } | 358 } |
| 357 | 359 |
| 358 # GYP version: mojo/mojo.gyp:mojo_shell_tests | 360 # GYP version: mojo/mojo.gyp:mojo_shell_tests |
| 359 test("mojo_shell_tests") { | 361 test("mojo_shell_tests") { |
| 360 sources = [ | 362 sources = [ |
| 361 "child_process_host_unittest.cc", | 363 "child_process_host_unittest.cc", |
| 364 "command_line_util_unittest.cc", |
| 362 "data_pipe_peek_unittest.cc", | 365 "data_pipe_peek_unittest.cc", |
| 363 "in_process_native_runner_unittest.cc", | 366 "in_process_native_runner_unittest.cc", |
| 364 "native_runner_unittest.cc", | 367 "native_runner_unittest.cc", |
| 365 "shell_test_base.cc", | 368 "shell_test_base.cc", |
| 366 "shell_test_base.h", | 369 "shell_test_base.h", |
| 367 "shell_test_base_android.cc", | 370 "shell_test_base_android.cc", |
| 368 "shell_test_base_unittest.cc", | 371 "shell_test_base_unittest.cc", |
| 369 "shell_test_main.cc", | 372 "shell_test_main.cc", |
| 370 "url_resolver_unittest.cc", | 373 "url_resolver_unittest.cc", |
| 371 ] | 374 ] |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 "//third_party/mojo/src/mojo/public/cpp/system:system", | 444 "//third_party/mojo/src/mojo/public/cpp/system:system", |
| 442 | 445 |
| 443 #"//mojo/services/http_server/public/cpp", | 446 #"//mojo/services/http_server/public/cpp", |
| 444 #"//mojo/services/http_server/public/interfaces", | 447 #"//mojo/services/http_server/public/interfaces", |
| 445 "//mojo/services/network/public/interfaces", | 448 "//mojo/services/network/public/interfaces", |
| 446 "//mojo/shell/test:bindings", | 449 "//mojo/shell/test:bindings", |
| 447 ] | 450 ] |
| 448 | 451 |
| 449 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 452 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
| 450 } | 453 } |
| OLD | NEW |