| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |