| 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("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 group("runner") { | 10 group("runner") { |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 } | 95 } |
| 96 } | 96 } |
| 97 | 97 |
| 98 source_set("init") { | 98 source_set("init") { |
| 99 sources = [ | 99 sources = [ |
| 100 "init.cc", | 100 "init.cc", |
| 101 "init.h", | 101 "init.h", |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 deps = [ | 104 deps = [ |
| 105 "//mojo/runner/host:switches", | |
| 106 "//base", | 105 "//base", |
| 107 "//base:base_static", | 106 "//base:base_static", |
| 108 "//base:i18n", | 107 "//base:i18n", |
| 108 "//mojo/runner/host:switches", |
| 109 ] | 109 ] |
| 110 } | 110 } |
| 111 | 111 |
| 112 source_set("lib") { | 112 source_set("lib") { |
| 113 sources = [ | 113 sources = [ |
| 114 "context.cc", | 114 "context.cc", |
| 115 "context.h", | 115 "context.h", |
| 116 "scoped_user_data_dir.cc", | 116 "scoped_user_data_dir.cc", |
| 117 "scoped_user_data_dir.h", | 117 "scoped_user_data_dir.h", |
| 118 "task_runners.cc", | 118 "task_runners.cc", |
| 119 "task_runners.h", | 119 "task_runners.h", |
| 120 "tracer.cc", | 120 "tracer.cc", |
| 121 "tracer.h", | 121 "tracer.h", |
| 122 ] | 122 ] |
| 123 | 123 |
| 124 deps = [ | 124 deps = [ |
| 125 ":init", | 125 ":init", |
| 126 "//base", | 126 "//base", |
| 127 "//base:base_static", |
| 127 "//base/third_party/dynamic_annotations", | 128 "//base/third_party/dynamic_annotations", |
| 128 "//base:base_static", | |
| 129 "//components/devtools_service/public/cpp", | 129 "//components/devtools_service/public/cpp", |
| 130 "//components/devtools_service/public/interfaces", | 130 "//components/devtools_service/public/interfaces", |
| 131 "//components/tracing:startup_tracing", | 131 "//components/tracing:startup_tracing", |
| 132 "//mojo/application/public/cpp", | 132 "//mojo/application/public/cpp", |
| 133 "//mojo/message_pump", | 133 "//mojo/message_pump", |
| 134 "//mojo/package_manager", | 134 "//mojo/package_manager", |
| 135 "//mojo/runner/child:interfaces", | 135 "//mojo/runner/child:interfaces", |
| 136 "//mojo/runner/host:lib", | 136 "//mojo/runner/host:lib", |
| 137 "//mojo/services/network/public/interfaces", | 137 "//mojo/services/network/public/interfaces", |
| 138 "//mojo/services/tracing/public/cpp", | 138 "//mojo/services/tracing/public/cpp", |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 } | 368 } |
| 369 | 369 |
| 370 generate_mojo_shell_assets_list("build_mojo_runner_test_assets") { | 370 generate_mojo_shell_assets_list("build_mojo_runner_test_assets") { |
| 371 testonly = true | 371 testonly = true |
| 372 deps = [ | 372 deps = [ |
| 373 ":copy_mojo_runner_test_assets", | 373 ":copy_mojo_runner_test_assets", |
| 374 ] | 374 ] |
| 375 dir = mojo_runner_test_assets_dir | 375 dir = mojo_runner_test_assets_dir |
| 376 } | 376 } |
| 377 } | 377 } |
| OLD | NEW |