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("//mojo/generate_mojo_shell_assets_list.gni") | 5 import("//mojo/generate_mojo_shell_assets_list.gni") |
6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.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 | 9 |
10 # We don't support building in the component build since mojo apps are | 10 # We don't support building in the component build since mojo apps are |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 "child_process.cc", | 102 "child_process.cc", |
103 "child_process.h", | 103 "child_process.h", |
104 "child_process_host.cc", | 104 "child_process_host.cc", |
105 "child_process_host.h", | 105 "child_process_host.h", |
106 "context.cc", | 106 "context.cc", |
107 "context.h", | 107 "context.h", |
108 "init.cc", | 108 "init.cc", |
109 "init.h", | 109 "init.h", |
110 "out_of_process_native_runner.cc", | 110 "out_of_process_native_runner.cc", |
111 "out_of_process_native_runner.h", | 111 "out_of_process_native_runner.h", |
112 "scoped_user_data_dir.cc", | |
113 "scoped_user_data_dir.h", | |
114 "task_runners.cc", | 112 "task_runners.cc", |
115 "task_runners.h", | 113 "task_runners.h", |
116 "url_resolver.cc", | 114 "url_resolver.cc", |
117 "url_resolver.h", | 115 "url_resolver.h", |
118 ] | 116 ] |
119 | 117 |
120 deps = [ | 118 deps = [ |
121 ":child_process_bindings", | 119 ":child_process_bindings", |
122 ":in_process_native_runner", | 120 ":in_process_native_runner", |
123 ":native_application_support", | 121 ":native_application_support", |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 ] | 444 ] |
447 | 445 |
448 deps = [ | 446 deps = [ |
449 "//base", | 447 "//base", |
450 "//mojo/application/public/cpp:test_support", | 448 "//mojo/application/public/cpp:test_support", |
451 "//mojo/runner/test:bindings", | 449 "//mojo/runner/test:bindings", |
452 "//mojo/services/network/public/interfaces", | 450 "//mojo/services/network/public/interfaces", |
453 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 451 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
454 ] | 452 ] |
455 } | 453 } |
OLD | NEW |