Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: content/test/BUILD.gn

Issue 1016643004: Moves SQLitePersistentCookieStore to net/extras/sqlite. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cookies
Patch Set: Better timestamp fix. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/module_args/v8.gni") 9 import("//build/module_args/v8.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 } 635 }
636 636
637 if (is_mac && use_openssl) { 637 if (is_mac && use_openssl) {
638 deps += [ "//third_party/boringssl" ] 638 deps += [ "//third_party/boringssl" ]
639 } 639 }
640 } 640 }
641 641
642 if (!is_mac) { # TODO(GYP) enable on Mac once it links. 642 if (!is_mac) { # TODO(GYP) enable on Mac once it links.
643 test("content_perftests") { 643 test("content_perftests") {
644 sources = [ 644 sources = [
645 "../browser/net/sqlite_persistent_cookie_store_perftest.cc",
646 "../browser/renderer_host/input/input_router_impl_perftest.cc", 645 "../browser/renderer_host/input/input_router_impl_perftest.cc",
647 "../common/cc_messages_perftest.cc", 646 "../common/cc_messages_perftest.cc",
648 "../test/run_all_perftests.cc", 647 "../test/run_all_perftests.cc",
649 ] 648 ]
650 deps = [ 649 deps = [
651 "//base/allocator", 650 "//base/allocator",
652 "//base/test:test_support", 651 "//base/test:test_support",
653 "//content/public/browser", 652 "//content/public/browser",
654 "//content/public/common", 653 "//content/public/common",
655 "//content/test:test_support", 654 "//content/test:test_support",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 "//gpu/blink", 710 "//gpu/blink",
712 "//testing/gtest", 711 "//testing/gtest",
713 "//third_party/WebKit/public:blink", 712 "//third_party/WebKit/public:blink",
714 "//ui/base", 713 "//ui/base",
715 "//ui/gfx", 714 "//ui/gfx",
716 "//ui/gfx/geometry", 715 "//ui/gfx/geometry",
717 "//ui/gl", 716 "//ui/gl",
718 ] 717 ]
719 } 718 }
720 } 719 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698