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

Side by Side Diff: mojo/application/public/cpp/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 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 # GYP version: mojo/mojo_base.gyp:mojo_application_base 5 # GYP version: mojo/mojo_base.gyp:mojo_application_base
6 source_set("cpp") { 6 source_set("cpp") {
7 public_deps = [ 7 public_deps = [
8 ":init_commandline",
8 ":sources", 9 ":sources",
9 ":init_commandline",
10 ] 10 ]
11 } 11 }
12 12
13 # Like the target above, but without special commandline initialization that 13 # Like the target above, but without special commandline initialization that
14 # apps use. 14 # apps use.
15 source_set("cpp_for_chromium") { 15 source_set("cpp_for_chromium") {
16 public_deps = [ 16 public_deps = [
17 ":sources", 17 ":sources",
18 ] 18 ]
19 } 19 }
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 "//mojo/public/cpp/environment", 98 "//mojo/public/cpp/environment",
99 "//mojo/public/cpp/system", 99 "//mojo/public/cpp/system",
100 "//testing/gtest", 100 "//testing/gtest",
101 ] 101 ]
102 102
103 data_deps = [] 103 data_deps = []
104 if (is_android) { 104 if (is_android) {
105 data_deps += [ "//mojo/android" ] 105 data_deps += [ "//mojo/android" ]
106 } 106 }
107 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698