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

Side by Side Diff: net/BUILD.gn

Issue 361633002: [Android][gn] Add android resources templates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-java
Patch Set: Fix bad rebase Created 6 years, 5 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
« no previous file with comments | « build/secondary/tools/grit/grit_rule.gni ('k') | ui/android/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//tools/grit/grit_rule.gni")
9 import("//url/config.gni") 8 import("//url/config.gni")
10 9
10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni.
11 # Currently, that file can't be imported multiple times. Make this always
12 # imported when http://crbug.com/393704 is fixed.
13 if (!is_android) {
14 import("//tools/grit/grit_rule.gni")
15 }
16
11 if (is_android) { 17 if (is_android) {
12 import("//build/config/android/config.gni") 18 import("//build/config/android/config.gni")
13 import("//build/config/android/rules.gni") 19 import("//build/config/android/rules.gni")
14 } else if (is_mac) { 20 } else if (is_mac) {
15 import("//build/config/mac/mac_sdk.gni") 21 import("//build/config/mac/mac_sdk.gni")
16 } 22 }
17 23
18 # The list of net files is kept in net.gypi. Read it. 24 # The list of net files is kept in net.gypi. Read it.
19 gypi_values = exec_script( 25 gypi_values = exec_script(
20 "//build/gypi_to_gn.py", 26 "//build/gypi_to_gn.py",
(...skipping 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after
1320 sources = [ "quic/quic_server_bin.cc" ] 1326 sources = [ "quic/quic_server_bin.cc" ]
1321 deps = [ 1327 deps = [
1322 ":quic_tools", 1328 ":quic_tools",
1323 ":net", 1329 ":net",
1324 "//base", 1330 "//base",
1325 "//third_party/openssl", 1331 "//third_party/openssl",
1326 ] 1332 ]
1327 } 1333 }
1328 1334
1329 } # !is_android 1335 } # !is_android
OLDNEW
« no previous file with comments | « build/secondary/tools/grit/grit_rule.gni ('k') | ui/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698