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

Side by Side Diff: net/BUILD.gn

Issue 708133002: win: build fixes (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: . Created 6 years, 1 month 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
« no previous file with comments | « mojo/shell/dynamic_application_loader.cc ('k') | services/http_server/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//url/config.gni") 8 import("//url/config.gni")
9 9
10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni.
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 "server/http_server_response_info.cc", 581 "server/http_server_response_info.cc",
582 "server/http_server_response_info.h", 582 "server/http_server_response_info.h",
583 "server/web_socket.cc", 583 "server/web_socket.cc",
584 "server/web_socket.h", 584 "server/web_socket.h",
585 ] 585 ]
586 configs += [ "//build/config/compiler:wexit_time_destructors" ] 586 configs += [ "//build/config/compiler:wexit_time_destructors" ]
587 deps = [ 587 deps = [
588 ":net", 588 ":net",
589 "//base", 589 "//base",
590 ] 590 ]
591 if (is_win) {
592 cflags = [
593 "/wd4267",
594 ]
595 }
591 } 596 }
592 597
593 executable("dump_cache") { 598 executable("dump_cache") {
594 testonly = true 599 testonly = true
595 sources = [ 600 sources = [
596 "tools/dump_cache/cache_dumper.cc", 601 "tools/dump_cache/cache_dumper.cc",
597 "tools/dump_cache/cache_dumper.h", 602 "tools/dump_cache/cache_dumper.h",
598 "tools/dump_cache/dump_cache.cc", 603 "tools/dump_cache/dump_cache.cc",
599 "tools/dump_cache/dump_files.cc", 604 "tools/dump_cache/dump_files.cc",
600 "tools/dump_cache/dump_files.h", 605 "tools/dump_cache/dump_files.h",
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after
1386 sources = [ "quic/quic_server_bin.cc" ] 1391 sources = [ "quic/quic_server_bin.cc" ]
1387 deps = [ 1392 deps = [
1388 ":quic_tools", 1393 ":quic_tools",
1389 ":net", 1394 ":net",
1390 "//base", 1395 "//base",
1391 "//third_party/boringssl", 1396 "//third_party/boringssl",
1392 ] 1397 ]
1393 } 1398 }
1394 1399
1395 } # !is_android 1400 } # !is_android
OLDNEW
« no previous file with comments | « mojo/shell/dynamic_application_loader.cc ('k') | services/http_server/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698