| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/mojo/src/mojo/public/tools/bindings/mojom.gni") | 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 | 621 |
| 622 if (is_mac && use_openssl) { | 622 if (is_mac && use_openssl) { |
| 623 deps += [ "//third_party/boringssl" ] | 623 deps += [ "//third_party/boringssl" ] |
| 624 } | 624 } |
| 625 } | 625 } |
| 626 } | 626 } |
| 627 | 627 |
| 628 if (!is_mac && (!is_win || link_chrome_on_windows)) { # TODO(GYP) enable on Mac
once it links. | 628 if (!is_mac && (!is_win || link_chrome_on_windows)) { # TODO(GYP) enable on Mac
once it links. |
| 629 test("content_perftests") { | 629 test("content_perftests") { |
| 630 sources = [ | 630 sources = [ |
| 631 "../browser/net/sqlite_persistent_cookie_store_perftest.cc", |
| 631 "../browser/renderer_host/input/input_router_impl_perftest.cc", | 632 "../browser/renderer_host/input/input_router_impl_perftest.cc", |
| 632 "../common/cc_messages_perftest.cc", | 633 "../common/cc_messages_perftest.cc", |
| 633 "../test/run_all_perftests.cc", | 634 "../test/run_all_perftests.cc", |
| 634 ] | 635 ] |
| 635 deps = [ | 636 deps = [ |
| 636 "//base/allocator", | 637 "//base/allocator", |
| 637 "//base/test:test_support", | 638 "//base/test:test_support", |
| 638 "//content/public/browser", | 639 "//content/public/browser", |
| 639 "//content/public/common", | 640 "//content/public/common", |
| 640 "//content/test:test_support", | 641 "//content/test:test_support", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 "//content/public/common", | 696 "//content/public/common", |
| 696 "//testing/gtest", | 697 "//testing/gtest", |
| 697 "//third_party/WebKit/public:blink", | 698 "//third_party/WebKit/public:blink", |
| 698 "//ui/base", | 699 "//ui/base", |
| 699 "//ui/gfx", | 700 "//ui/gfx", |
| 700 "//ui/gfx/geometry", | 701 "//ui/gfx/geometry", |
| 701 "//ui/gl", | 702 "//ui/gl", |
| 702 ] | 703 ] |
| 703 } | 704 } |
| 704 } | 705 } |
| OLD | NEW |