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 if (!is_android) { |
| 11 import("//tools/grit/grit_rule.gni") |
| 12 } |
| 13 |
11 if (is_android) { | 14 if (is_android) { |
12 import("//build/config/android/config.gni") | 15 import("//build/config/android/config.gni") |
13 import("//build/config/android/rules.gni") | 16 import("//build/config/android/rules.gni") |
14 } else if (is_mac) { | 17 } else if (is_mac) { |
15 import("//build/config/mac/mac_sdk.gni") | 18 import("//build/config/mac/mac_sdk.gni") |
16 } | 19 } |
17 | 20 |
18 # The list of net files is kept in net.gypi. Read it. | 21 # The list of net files is kept in net.gypi. Read it. |
19 gypi_values = exec_script( | 22 gypi_values = exec_script( |
20 "//build/gypi_to_gn.py", | 23 "//build/gypi_to_gn.py", |
(...skipping 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1316 sources = [ "quic/quic_server_bin.cc" ] | 1319 sources = [ "quic/quic_server_bin.cc" ] |
1317 deps = [ | 1320 deps = [ |
1318 ":quic_tools", | 1321 ":quic_tools", |
1319 ":net", | 1322 ":net", |
1320 "//base", | 1323 "//base", |
1321 "//third_party/openssl", | 1324 "//third_party/openssl", |
1322 ] | 1325 ] |
1323 } | 1326 } |
1324 | 1327 |
1325 } # !is_android | 1328 } # !is_android |
OLD | NEW |