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

Side by Side Diff: mandoline/BUILD.gn

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Synchronize with new version of gn patch Created 5 years, 1 month 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 6
7 group("all") { 7 group("all") {
8 # Meta-target, don't link into production code. 8 # Meta-target, don't link into production code.
9 testonly = true 9 testonly = true
10 10
11 deps = [ 11 deps = [
12 ":tests",
12 "//mojo", 13 "//mojo",
13 ":tests",
14 ] 14 ]
15 15
16 if (is_android) { 16 if (is_android) {
17 deps += [ "//mandoline/app/android" ] 17 deps += [ "//mandoline/app/android" ]
18 } else { 18 } else {
19 deps += [ 19 deps += [
20 "//components/mus/example", 20 "//components/mus/example",
21 "//mandoline/app/desktop", 21 "//mandoline/app/desktop",
22 ] 22 ]
23 } 23 }
(...skipping 27 matching lines...) Expand all
51 "//components/web_view/test_runner", 51 "//components/web_view/test_runner",
52 "//media/mojo/services:tests", 52 "//media/mojo/services:tests",
53 "//sql/mojo:apptests", 53 "//sql/mojo:apptests",
54 ] 54 ]
55 55
56 if (use_aura) { 56 if (use_aura) {
57 deps += [ "//mandoline/ui/desktop_ui:mandoline_browser_apptests" ] 57 deps += [ "//mandoline/ui/desktop_ui:mandoline_browser_apptests" ]
58 } 58 }
59 } 59 }
60 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698