| 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 native_libs = [ "libmojo_runner.so" ] | 333 native_libs = [ "libmojo_runner.so" ] |
| 334 | 334 |
| 335 asset_location = mojo_runner_assets_dir | 335 asset_location = mojo_runner_assets_dir |
| 336 | 336 |
| 337 deps = [ | 337 deps = [ |
| 338 ":build_mojo_runner_assets", | 338 ":build_mojo_runner_assets", |
| 339 ":copy_mojo_runner", | 339 ":copy_mojo_runner", |
| 340 ":java", | 340 ":java", |
| 341 ":resources", | 341 ":resources", |
| 342 "//base:base_java", | 342 "//base:base_java", |
| 343 "//components/view_manager:view_manager_java", |
| 343 "//third_party/android_tools:google_play_services_default_resources", | 344 "//third_party/android_tools:google_play_services_default_resources", |
| 344 "//ui/platform_window/android:platform_window_java", | |
| 345 ] | 345 ] |
| 346 } | 346 } |
| 347 | 347 |
| 348 generate_mojo_shell_assets_list("build_mojo_runner_test_assets") { | 348 generate_mojo_shell_assets_list("build_mojo_runner_test_assets") { |
| 349 deps = [ | 349 deps = [ |
| 350 ":copy_mojo_runner_test_assets", | 350 ":copy_mojo_runner_test_assets", |
| 351 ] | 351 ] |
| 352 dir = mojo_runner_test_assets_dir | 352 dir = mojo_runner_test_assets_dir |
| 353 } | 353 } |
| 354 | 354 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 ] | 437 ] |
| 438 | 438 |
| 439 deps = [ | 439 deps = [ |
| 440 "//base", | 440 "//base", |
| 441 "//mojo/application/public/cpp:test_support", | 441 "//mojo/application/public/cpp:test_support", |
| 442 "//mojo/runner/test:bindings", | 442 "//mojo/runner/test:bindings", |
| 443 "//mojo/services/network/public/interfaces", | 443 "//mojo/services/network/public/interfaces", |
| 444 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 444 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 445 ] | 445 ] |
| 446 } | 446 } |
| OLD | NEW |