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

Side by Side Diff: components/domain_reliability.gypi

Issue 1733463005: Domain Reliability: Add more Gmail domains (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase? :| Created 4 years, 9 months 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
OLDNEW
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 { 5 {
6 'includes': [ 6 'includes': [
7 'domain_reliability/baked_in_configs.gypi', 7 'domain_reliability/baked_in_configs.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 { 63 {
64 'action_name': 'bake_in_configs', 64 'action_name': 'bake_in_configs',
65 'variables': { 65 'variables': {
66 'bake_in_configs_script': 'domain_reliability/bake_in_configs.py', 66 'bake_in_configs_script': 'domain_reliability/bake_in_configs.py',
67 'baked_in_configs_cc': 67 'baked_in_configs_cc':
68 '<(INTERMEDIATE_DIR)/domain_reliability/baked_in_configs.cc', 68 '<(INTERMEDIATE_DIR)/domain_reliability/baked_in_configs.cc',
69 }, 69 },
70 'inputs': [ 70 'inputs': [
71 '<(bake_in_configs_script)', 71 '<(bake_in_configs_script)',
72 '<@(baked_in_configs)', 72 '<@(baked_in_configs)',
73 'domain_reliability/baked_in_configs.gypi',
73 ], 74 ],
74 'outputs': [ 75 'outputs': [
75 '<(baked_in_configs_cc)' 76 '<(baked_in_configs_cc)'
76 ], 77 ],
77 # The actual list of JSON files will overflow the command line length 78 # The actual list of JSON files will overflow the command line length
78 # limit on Windows, so pass the name of the .gypi file and 79 # limit on Windows, so pass the name of the .gypi file and
79 # bake_in_configs.py will read the filenames out of it manually. 80 # bake_in_configs.py will read the filenames out of it manually.
80 'action': ['python', 81 'action': ['python',
81 '<(bake_in_configs_script)', 82 '<(bake_in_configs_script)',
82 '--gypi-relative-to=.', 83 '--gypi-relative-to=.',
83 '--gypi-file=domain_reliability/baked_in_configs.gypi', 84 '--gypi-file=domain_reliability/baked_in_configs.gypi',
84 '--output=<(baked_in_configs_cc)'], 85 '--output=<(baked_in_configs_cc)'],
85 'process_outputs_as_sources': 1, 86 'process_outputs_as_sources': 1,
86 'message': 'Baking in Domain Reliability configs', 87 'message': 'Baking in Domain Reliability configs',
87 }, 88 },
88 ], 89 ],
89 }, 90 },
90 ], 91 ],
91 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698