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