| 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("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//mojo/tools/embed/rules.gni") | 9 import("//mojo/tools/embed/rules.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 deps += [ | 26 deps += [ |
| 27 ":mojo_shell_apk", | 27 ":mojo_shell_apk", |
| 28 ":mojo_shell_tests_apk", | 28 ":mojo_shell_tests_apk", |
| 29 ] | 29 ] |
| 30 } | 30 } |
| 31 } | 31 } |
| 32 | 32 |
| 33 group("tests") { | 33 group("tests") { |
| 34 testonly = true | 34 testonly = true |
| 35 deps = [ | 35 deps = [ |
| 36 ":apptests", |
| 36 ":mojo_shell_tests", | 37 ":mojo_shell_tests", |
| 37 ":shell_nfc_apptests", | 38 ":shell_nfc_apptests", |
| 38 "//shell/application_manager:mojo_application_manager_unittests", | 39 "//shell/application_manager:mojo_application_manager_unittests", |
| 39 "//shell/crash:crash_unittests", | 40 "//shell/crash:crash_unittests", |
| 40 ] | 41 ] |
| 41 } | 42 } |
| 42 | 43 |
| 43 if (is_android) { | 44 if (is_android) { |
| 44 import("//build/config/android/config.gni") | 45 import("//build/config/android/config.gni") |
| 45 import("//build/config/android/rules.gni") | 46 import("//build/config/android/rules.gni") |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 "${root_out_dir}/libmojo_shell.so", | 607 "${root_out_dir}/libmojo_shell.so", |
| 607 ] | 608 ] |
| 608 } else { | 609 } else { |
| 609 sources += [ "${root_out_dir}/mojo_shell" ] | 610 sources += [ "${root_out_dir}/mojo_shell" ] |
| 610 } | 611 } |
| 611 | 612 |
| 612 outputs = [ | 613 outputs = [ |
| 613 "${root_out_dir}/symbols/{{source_file_part}}", | 614 "${root_out_dir}/symbols/{{source_file_part}}", |
| 614 ] | 615 ] |
| 615 } | 616 } |
| OLD | NEW |