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