| 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("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/icu/config.gni") | 10 import("//third_party/icu/config.gni") |
| (...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 ":simple_quic_tools", | 1341 ":simple_quic_tools", |
| 1342 ":test_support", | 1342 ":test_support", |
| 1343 "//base", | 1343 "//base", |
| 1344 "//base:i18n", | 1344 "//base:i18n", |
| 1345 "//base:prefs_test_support", | 1345 "//base:prefs_test_support", |
| 1346 "//base/allocator", | 1346 "//base/allocator", |
| 1347 "//base/third_party/dynamic_annotations", | 1347 "//base/third_party/dynamic_annotations", |
| 1348 "//crypto", | 1348 "//crypto", |
| 1349 "//crypto:platform", | 1349 "//crypto:platform", |
| 1350 "//crypto:test_support", | 1350 "//crypto:test_support", |
| 1351 "//gin", | |
| 1352 "//net/base/registry_controlled_domains", | 1351 "//net/base/registry_controlled_domains", |
| 1353 "//sql", | 1352 "//sql", |
| 1354 "//testing/gmock", | 1353 "//testing/gmock", |
| 1355 "//testing/gtest", | 1354 "//testing/gtest", |
| 1356 "//third_party/zlib", | 1355 "//third_party/zlib", |
| 1357 "//url", | 1356 "//url", |
| 1358 ] | 1357 ] |
| 1359 | 1358 |
| 1360 data = [ | 1359 data = [ |
| 1361 "data/", | 1360 "data/", |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1664 if (enable_websockets) { | 1663 if (enable_websockets) { |
| 1665 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1664 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1666 } | 1665 } |
| 1667 | 1666 |
| 1668 if (use_v8_in_net) { | 1667 if (use_v8_in_net) { |
| 1669 deps += [ ":net_with_v8" ] | 1668 deps += [ ":net_with_v8" ] |
| 1670 } else { | 1669 } else { |
| 1671 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1670 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1672 } | 1671 } |
| 1673 } | 1672 } |
| OLD | NEW |