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/compiler/compiler.gni") |
5 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
8 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
9 import("//testing/test.gni") | 10 import("//testing/test.gni") |
10 import("//third_party/icu/config.gni") | 11 import("//third_party/icu/config.gni") |
11 import("//third_party/protobuf/proto_library.gni") | 12 import("//third_party/protobuf/proto_library.gni") |
12 | 13 |
13 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. | 14 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. |
14 # Currently, that file can't be imported multiple times. Make this always | 15 # Currently, that file can't be imported multiple times. Make this always |
(...skipping 1643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1658 if (enable_websockets) { | 1659 if (enable_websockets) { |
1659 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1660 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1660 } | 1661 } |
1661 | 1662 |
1662 if (use_v8_in_net) { | 1663 if (use_v8_in_net) { |
1663 deps += [ ":net_with_v8" ] | 1664 deps += [ ":net_with_v8" ] |
1664 } else { | 1665 } else { |
1665 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1666 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1666 } | 1667 } |
1667 } | 1668 } |
OLD | NEW |