OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 action("bake_in_configs") { | 5 action("bake_in_configs") { |
6 visibility = [ ":*" ] | 6 visibility = [ ":*" ] |
7 script = "bake_in_configs.py" | 7 script = "bake_in_configs.py" |
8 | 8 |
9 inputs = [ | 9 inputs = [ |
10 "baked_in_configs/c_android_clients_google_com.json", | 10 "baked_in_configs/c_android_clients_google_com.json", |
11 "baked_in_configs/c_bigcache_googleapis_com.json", | 11 "baked_in_configs/c_bigcache_googleapis_com.json", |
12 "baked_in_configs/c_doc-0-0-sj_sj_googleusercontent_com.json", | 12 "baked_in_configs/c_doc-0-0-sj_sj_googleusercontent_com.json", |
13 "baked_in_configs/c_docs_google_com.json", | 13 "baked_in_configs/c_docs_google_com.json", |
14 "baked_in_configs/c_drive_google_com.json", | 14 "baked_in_configs/c_drive_google_com.json", |
15 "baked_in_configs/c_googlesyndication_com.json", | 15 "baked_in_configs/c_googlesyndication_com.json", |
16 "baked_in_configs/c_pack_google_com.json", | 16 "baked_in_configs/c_pack_google_com.json", |
17 "baked_in_configs/c_play_google_com.json", | 17 "baked_in_configs/c_play_google_com.json", |
18 "baked_in_configs/c_youtube_com.json", | 18 "baked_in_configs/c_youtube_com.json", |
19 "baked_in_configs/clients2_google_com.json", | 19 "baked_in_configs/clients2_google_com.json", |
20 "baked_in_configs/docs_google_com.json", | 20 "baked_in_configs/docs_google_com.json", |
| 21 "baked_in_configs/gcp_gvt2_com.json", |
| 22 "baked_in_configs/gcp_gvt6_com.json", |
21 "baked_in_configs/google-analytics_com.json", | 23 "baked_in_configs/google-analytics_com.json", |
22 "baked_in_configs/googlevideo_com.json", | 24 "baked_in_configs/googlevideo_com.json", |
23 "baked_in_configs/gvt1_com.json", | 25 "baked_in_configs/gvt1_com.json", |
24 "baked_in_configs/gvt2_com.json", | 26 "baked_in_configs/gvt2_com.json", |
| 27 "baked_in_configs/gvt6_com.json", |
25 "baked_in_configs/ssl_gstatic_com.json", | 28 "baked_in_configs/ssl_gstatic_com.json", |
26 "baked_in_configs/www_google_com.json", | 29 "baked_in_configs/www_google_com.json", |
27 ] | 30 ] |
28 | 31 |
29 output_file = "$target_gen_dir/baked_in_configs.cc" | 32 output_file = "$target_gen_dir/baked_in_configs.cc" |
30 outputs = [ | 33 outputs = [ |
31 output_file, | 34 output_file, |
32 ] | 35 ] |
33 | 36 |
34 # The JSON file list is too long for the command line on Windows, so put | 37 # The JSON file list is too long for the command line on Windows, so put |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 110 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
108 | 111 |
109 deps = [ | 112 deps = [ |
110 ":domain_reliability", | 113 ":domain_reliability", |
111 "//base", | 114 "//base", |
112 "//base/test:test_support", | 115 "//base/test:test_support", |
113 "//net:test_support", | 116 "//net:test_support", |
114 "//testing/gtest", | 117 "//testing/gtest", |
115 ] | 118 ] |
116 } | 119 } |
OLD | NEW |