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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 } | 88 } |
89 | 89 |
90 source_set("lib") { | 90 source_set("lib") { |
91 sources = [ | 91 sources = [ |
92 "child_process.cc", | 92 "child_process.cc", |
93 "child_process.h", | 93 "child_process.h", |
94 "child_process_host.cc", | 94 "child_process_host.cc", |
95 "child_process_host.h", | 95 "child_process_host.h", |
96 "context.cc", | 96 "context.cc", |
97 "context.h", | 97 "context.h", |
98 "filename_util.cc", | |
99 "filename_util.h", | |
100 "init.cc", | 98 "init.cc", |
101 "init.h", | 99 "init.h", |
102 "out_of_process_native_runner.cc", | 100 "out_of_process_native_runner.cc", |
103 "out_of_process_native_runner.h", | 101 "out_of_process_native_runner.h", |
104 "task_runners.cc", | 102 "task_runners.cc", |
105 "task_runners.h", | 103 "task_runners.h", |
106 "url_resolver.cc", | 104 "url_resolver.cc", |
107 "url_resolver.h", | 105 "url_resolver.h", |
108 ] | 106 ] |
109 | 107 |
110 deps = [ | 108 deps = [ |
111 ":child_process_bindings", | 109 ":child_process_bindings", |
112 ":in_process_native_runner", | 110 ":in_process_native_runner", |
113 ":native_application_support", | 111 ":native_application_support", |
114 "//base", | 112 "//base", |
115 "//base/third_party/dynamic_annotations", | 113 "//base/third_party/dynamic_annotations", |
116 "//base:base_static", | 114 "//base:base_static", |
117 "//mojo/application", | 115 "//mojo/application", |
118 "//mojo/common", | 116 "//mojo/common", |
119 "//mojo/common:tracing_impl", | 117 "//mojo/common:tracing_impl", |
| 118 "//mojo/util:filename_util", |
120 "//third_party/mojo/src/mojo/edk/system", | 119 "//third_party/mojo/src/mojo/edk/system", |
121 "//third_party/mojo/src/mojo/public/cpp/bindings", | 120 "//third_party/mojo/src/mojo/public/cpp/bindings", |
122 "//third_party/mojo/src/mojo/public/interfaces/application", | 121 "//third_party/mojo/src/mojo/public/interfaces/application", |
123 "//mojo/services/network/public/interfaces", | 122 "//mojo/services/network/public/interfaces", |
124 "//mojo/shell", | 123 "//mojo/shell", |
125 "//mojo/services/tracing:bindings", | 124 "//mojo/services/tracing:bindings", |
126 "//ui/gl", | 125 "//ui/gl", |
127 "//url", | 126 "//url", |
128 ] | 127 ] |
129 | 128 |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 "shell_test_main.cc", | 347 "shell_test_main.cc", |
349 "url_resolver_unittest.cc", | 348 "url_resolver_unittest.cc", |
350 ] | 349 ] |
351 | 350 |
352 deps = [ | 351 deps = [ |
353 ":in_process_native_runner", | 352 ":in_process_native_runner", |
354 ":lib", | 353 ":lib", |
355 "//base", | 354 "//base", |
356 "//base:i18n", | 355 "//base:i18n", |
357 "//base/test:test_support", | 356 "//base/test:test_support", |
358 "//testing/gtest", | |
359 "//url", | |
360 "//mojo/common", | 357 "//mojo/common", |
361 "//third_party/mojo/src/mojo/edk/system", | |
362 "//mojo/environment:chromium", | 358 "//mojo/environment:chromium", |
363 "//third_party/mojo/src/mojo/public/cpp/bindings", | |
364 "//mojo/services/test_service:bindings", | 359 "//mojo/services/test_service:bindings", |
365 "//mojo/shell", | 360 "//mojo/shell", |
| 361 "//mojo/util:filename_util", |
| 362 "//testing/gtest", |
| 363 "//third_party/mojo/src/mojo/edk/system", |
| 364 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 365 "//url", |
366 ] | 366 ] |
367 | 367 |
368 datadeps = [ | 368 datadeps = [ |
369 "//mojo/services/test_service:test_app", | 369 "//mojo/services/test_service:test_app", |
370 "//mojo/services/test_service:test_request_tracker_app", | 370 "//mojo/services/test_service:test_request_tracker_app", |
371 ] | 371 ] |
372 | 372 |
373 if (is_android) { | 373 if (is_android) { |
374 sources += [ "android/background_application_loader_unittest.cc" ] | 374 sources += [ "android/background_application_loader_unittest.cc" ] |
375 | 375 |
(...skipping 29 matching lines...) Expand all Loading... |
405 #"//mojo/services/http_server/public/interfaces", | 405 #"//mojo/services/http_server/public/interfaces", |
406 "//mojo/services/network/public/interfaces", | 406 "//mojo/services/network/public/interfaces", |
407 | 407 |
408 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 408 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
409 "//third_party/mojo/src/mojo/public/cpp/environment", | 409 "//third_party/mojo/src/mojo/public/cpp/environment", |
410 "//third_party/mojo/src/mojo/public/cpp/system:system", | 410 "//third_party/mojo/src/mojo/public/cpp/system:system", |
411 ] | 411 ] |
412 | 412 |
413 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 413 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
414 } | 414 } |
OLD | NEW |