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