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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
630 | 630 |
631 if (is_mac && use_openssl) { | 631 if (is_mac && use_openssl) { |
632 deps += [ "//third_party/boringssl" ] | 632 deps += [ "//third_party/boringssl" ] |
633 } | 633 } |
634 } | 634 } |
635 } | 635 } |
636 | 636 |
637 if (!is_mac) { # TODO(GYP) enable on Mac once it links. | 637 if (!is_mac) { # TODO(GYP) enable on Mac once it links. |
638 test("content_perftests") { | 638 test("content_perftests") { |
639 sources = [ | 639 sources = [ |
640 "../browser/net/sqlite_persistent_cookie_store_perftest.cc", | |
641 "../browser/renderer_host/input/input_router_impl_perftest.cc", | 640 "../browser/renderer_host/input/input_router_impl_perftest.cc", |
642 "../common/cc_messages_perftest.cc", | 641 "../common/cc_messages_perftest.cc", |
643 "../test/run_all_perftests.cc", | 642 "../test/run_all_perftests.cc", |
644 ] | 643 ] |
645 deps = [ | 644 deps = [ |
646 "//base/allocator", | 645 "//base/allocator", |
647 "//base/test:test_support", | 646 "//base/test:test_support", |
648 "//content/public/browser", | 647 "//content/public/browser", |
649 "//content/public/common", | 648 "//content/public/common", |
650 "//content/test:test_support", | 649 "//content/test:test_support", |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 "//content/public/common", | 704 "//content/public/common", |
706 "//testing/gtest", | 705 "//testing/gtest", |
707 "//third_party/WebKit/public:blink", | 706 "//third_party/WebKit/public:blink", |
708 "//ui/base", | 707 "//ui/base", |
709 "//ui/gfx", | 708 "//ui/gfx", |
710 "//ui/gfx/geometry", | 709 "//ui/gfx/geometry", |
711 "//ui/gl", | 710 "//ui/gl", |
712 ] | 711 ] |
713 } | 712 } |
714 } | 713 } |
OLD | NEW |