| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |