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

Side by Side Diff: mojo/services/network/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 import("//mojo/public/mojo_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 9
10 java_library_path = "$target_out_dir/java_library.dex.jar" 10 java_library_path = "$target_out_dir/java_library.dex.jar"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 "//mojo/application/public/cpp", 96 "//mojo/application/public/cpp",
97 "//mojo/common:common_base", 97 "//mojo/common:common_base",
98 "//mojo/common:url_type_converters", 98 "//mojo/common:url_type_converters",
99 "//mojo/message_pump", 99 "//mojo/message_pump",
100 "//mojo/public/cpp/system:system", 100 "//mojo/public/cpp/system:system",
101 "//mojo/services/network/public/cpp", 101 "//mojo/services/network/public/cpp",
102 "//mojo/services/network/public/interfaces", 102 "//mojo/services/network/public/interfaces",
103 "//net", 103 "//net",
104 "//net:extras", 104 "//net:extras",
105 "//net:http_server", 105 "//net:http_server",
106 "//sql/mojo",
106 "//url", 107 "//url",
107 "//sql/mojo",
108 ] 108 ]
109 } 109 }
110 110
111 source_set("sources") { 111 source_set("sources") {
112 visibility = [ ":*" ] 112 visibility = [ ":*" ]
113 113
114 sources = [ 114 sources = [
115 "main.cc", 115 "main.cc",
116 ] 116 ]
117 117
(...skipping 27 matching lines...) Expand all
145 "//mojo/common:common_base", 145 "//mojo/common:common_base",
146 "//mojo/message_pump", 146 "//mojo/message_pump",
147 "//mojo/public/cpp/bindings:callback", 147 "//mojo/public/cpp/bindings:callback",
148 "//mojo/services/network/public/cpp", 148 "//mojo/services/network/public/cpp",
149 "//mojo/services/network/public/interfaces", 149 "//mojo/services/network/public/interfaces",
150 "//net", 150 "//net",
151 "//net:test_support", 151 "//net:test_support",
152 "//testing/gtest", 152 "//testing/gtest",
153 ] 153 ]
154 } 154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698