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 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
595 | 595 |
596 executable("dump_cache") { | 596 executable("dump_cache") { |
597 sources = [ | 597 sources = [ |
598 "tools/dump_cache/cache_dumper.cc", | 598 "tools/dump_cache/cache_dumper.cc", |
599 "tools/dump_cache/cache_dumper.h", | 599 "tools/dump_cache/cache_dumper.h", |
600 "tools/dump_cache/dump_cache.cc", | 600 "tools/dump_cache/dump_cache.cc", |
601 "tools/dump_cache/dump_files.cc", | 601 "tools/dump_cache/dump_files.cc", |
602 "tools/dump_cache/dump_files.h", | 602 "tools/dump_cache/dump_files.h", |
603 "tools/dump_cache/simple_cache_dumper.cc", | 603 "tools/dump_cache/simple_cache_dumper.cc", |
604 "tools/dump_cache/simple_cache_dumper.h", | 604 "tools/dump_cache/simple_cache_dumper.h", |
605 "tools/dump_cache/upgrade_win.cc", | |
606 "tools/dump_cache/upgrade_win.h", | |
607 "tools/dump_cache/url_to_filename_encoder.cc", | 605 "tools/dump_cache/url_to_filename_encoder.cc", |
608 "tools/dump_cache/url_to_filename_encoder.h", | 606 "tools/dump_cache/url_to_filename_encoder.h", |
609 "tools/dump_cache/url_utilities.h", | 607 "tools/dump_cache/url_utilities.h", |
610 "tools/dump_cache/url_utilities.cc", | 608 "tools/dump_cache/url_utilities.cc", |
611 ] | 609 ] |
612 | 610 |
613 configs += [ ":net_win_size_truncation" ] | 611 configs += [ ":net_win_size_truncation" ] |
614 | 612 |
615 deps = [ | 613 deps = [ |
616 "//base", | 614 "//base", |
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1365 sources = [ "quic/quic_server_bin.cc" ] | 1363 sources = [ "quic/quic_server_bin.cc" ] |
1366 deps = [ | 1364 deps = [ |
1367 ":quic_tools", | 1365 ":quic_tools", |
1368 ":net", | 1366 ":net", |
1369 "//base", | 1367 "//base", |
1370 "//third_party/boringssl", | 1368 "//third_party/boringssl", |
1371 ] | 1369 ] |
1372 } | 1370 } |
1373 | 1371 |
1374 } # !is_android | 1372 } # !is_android |
OLD | NEW |