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

Side by Side Diff: net/BUILD.gn

Issue 702003002: Make *some* version of the Mac GN build work. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: skip //chrome/tests on mac and win 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/services/BUILD.gn ('k') | sandbox/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 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] 1058 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ]
1059 deps = [ 1059 deps = [
1060 ":net", 1060 ":net",
1061 "//base", 1061 "//base",
1062 ] 1062 ]
1063 } 1063 }
1064 } 1064 }
1065 1065
1066 # TODO(GYP) make this compile on Android, we need some native test deps done. 1066 # TODO(GYP) make this compile on Android, we need some native test deps done.
1067 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong. 1067 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong.
1068 if (!is_android && !is_win) { 1068 # TODO(GYP) Also doesn't work on Mac, need to figure out why not.
1069 if (!is_android && !is_win && !is_mac) {
1069 1070
1070 source_set("quic_tools") { 1071 source_set("quic_tools") {
1071 sources = [ 1072 sources = [
1072 "quic/quic_dispatcher.cc", 1073 "quic/quic_dispatcher.cc",
1073 "quic/quic_dispatcher.h", 1074 "quic/quic_dispatcher.h",
1074 "quic/quic_in_memory_cache.cc", 1075 "quic/quic_in_memory_cache.cc",
1075 "quic/quic_in_memory_cache.h", 1076 "quic/quic_in_memory_cache.h",
1076 "quic/quic_per_connection_packet_writer.cc", 1077 "quic/quic_per_connection_packet_writer.cc",
1077 "quic/quic_per_connection_packet_writer.h", 1078 "quic/quic_per_connection_packet_writer.h",
1078 "quic/quic_server.cc", 1079 "quic/quic_server.cc",
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
1360 executable("quic_server") { 1361 executable("quic_server") {
1361 sources = [ "quic/quic_server_bin.cc" ] 1362 sources = [ "quic/quic_server_bin.cc" ]
1362 deps = [ 1363 deps = [
1363 ":quic_tools", 1364 ":quic_tools",
1364 ":net", 1365 ":net",
1365 "//base", 1366 "//base",
1366 "//third_party/boringssl", 1367 "//third_party/boringssl",
1367 ] 1368 ]
1368 } 1369 }
1369 1370
1370 } # !is_android 1371 } # !is_android && !is_win && !is_mac
OLDNEW
« no previous file with comments | « mojo/services/BUILD.gn ('k') | sandbox/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698