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

Side by Side Diff: net/BUILD.gn

Issue 246303005: Make GN's "check" run cleanly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 "url_request/url_request_test_util.cc", 568 "url_request/url_request_test_util.cc",
569 "url_request/url_request_test_util.h", 569 "url_request/url_request_test_util.h",
570 ] 570 ]
571 571
572 configs += [ ":net_win_size_truncation" ] 572 configs += [ ":net_win_size_truncation" ]
573 573
574 deps = [ 574 deps = [
575 "//base", 575 "//base",
576 "//base/test:test_support", 576 "//base/test:test_support",
577 "//crypto:platform", 577 "//crypto:platform",
578 "//net",
578 "//net/tools/tld_cleanup", 579 "//net/tools/tld_cleanup",
579 "//testing/gmock", 580 "//testing/gmock",
580 "//testing/gtest", 581 "//testing/gtest",
581 "//url", 582 "//url",
582 ] 583 ]
583 584
584 if (is_ios) { 585 if (is_ios) {
585 deps += [ "//third_party/nss" ] 586 deps += [ "//third_party/nss" ]
586 } 587 }
587 588
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 914
914 if (is_android || is_linux) { 915 if (is_android || is_linux) {
915 executable("disk_cache_memory_test") { 916 executable("disk_cache_memory_test") {
916 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] 917 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ]
917 deps = [ 918 deps = [
918 ":net", 919 ":net",
919 "//base", 920 "//base",
920 ] 921 ]
921 } 922 }
922 } 923 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698