| 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/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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 "//content/browser/service_worker:service_worker_proto", | 432 "//content/browser/service_worker:service_worker_proto", |
| 433 "//content/browser/speech/proto", | 433 "//content/browser/speech/proto", |
| 434 "//content/common:mojo_bindings", | 434 "//content/common:mojo_bindings", |
| 435 "//content/public/browser", | 435 "//content/public/browser", |
| 436 "//content/public/common", | 436 "//content/public/common", |
| 437 "//content/public/common:mojo_bindings", | 437 "//content/public/common:mojo_bindings", |
| 438 "//crypto", | 438 "//crypto", |
| 439 "//device/battery", | 439 "//device/battery", |
| 440 "//device/battery:mojo_bindings", | 440 "//device/battery:mojo_bindings", |
| 441 "//mojo/environment:chromium", | 441 "//mojo/environment:chromium", |
| 442 "//net:extras", |
| 442 "//net:test_support", | 443 "//net:test_support", |
| 443 "//skia", | 444 "//skia", |
| 444 "//sql", | 445 "//sql", |
| 445 "//sql:test_support", | 446 "//sql:test_support", |
| 446 "//testing/gmock", | 447 "//testing/gmock", |
| 447 "//testing/gtest", | 448 "//testing/gtest", |
| 448 "//third_party/mojo/src/mojo/edk/test:test_support", | 449 "//third_party/mojo/src/mojo/edk/test:test_support", |
| 449 "//third_party/mojo/src/mojo/public/cpp/bindings", | 450 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 450 "//third_party/re2", | 451 "//third_party/re2", |
| 451 "//ui/accessibility", | 452 "//ui/accessibility", |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 } | 616 } |
| 616 | 617 |
| 617 if (is_mac && use_openssl) { | 618 if (is_mac && use_openssl) { |
| 618 deps += [ "//third_party/boringssl" ] | 619 deps += [ "//third_party/boringssl" ] |
| 619 } | 620 } |
| 620 } | 621 } |
| 621 | 622 |
| 622 if (!is_mac) { # TODO(GYP) enable on Mac once it links. | 623 if (!is_mac) { # TODO(GYP) enable on Mac once it links. |
| 623 test("content_perftests") { | 624 test("content_perftests") { |
| 624 sources = [ | 625 sources = [ |
| 625 "../browser/net/sqlite_persistent_cookie_store_perftest.cc", | |
| 626 "../browser/renderer_host/input/input_router_impl_perftest.cc", | 626 "../browser/renderer_host/input/input_router_impl_perftest.cc", |
| 627 "../common/cc_messages_perftest.cc", | 627 "../common/cc_messages_perftest.cc", |
| 628 "../test/run_all_perftests.cc", | 628 "../test/run_all_perftests.cc", |
| 629 ] | 629 ] |
| 630 deps = [ | 630 deps = [ |
| 631 "//base/allocator", | 631 "//base/allocator", |
| 632 "//base/test:test_support", | 632 "//base/test:test_support", |
| 633 "//content/public/browser", | 633 "//content/public/browser", |
| 634 "//content/public/common", | 634 "//content/public/common", |
| 635 "//content/test:test_support", | 635 "//content/test:test_support", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 "//gpu/blink", | 692 "//gpu/blink", |
| 693 "//testing/gtest", | 693 "//testing/gtest", |
| 694 "//third_party/WebKit/public:blink", | 694 "//third_party/WebKit/public:blink", |
| 695 "//ui/base", | 695 "//ui/base", |
| 696 "//ui/gfx", | 696 "//ui/gfx", |
| 697 "//ui/gfx/geometry", | 697 "//ui/gfx/geometry", |
| 698 "//ui/gl", | 698 "//ui/gl", |
| 699 ] | 699 ] |
| 700 } | 700 } |
| 701 } | 701 } |
| OLD | NEW |