Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(862)

Side by Side Diff: shell/BUILD.gn

Issue 1312763004: Rationalize the top-level BUILD.gn rules a bit (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« services/BUILD.gn ('K') | « services/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« services/BUILD.gn ('K') | « services/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698