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