| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'domain_reliability', | 8 'target_name': 'domain_reliability', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 'actions': [ | 42 'actions': [ |
| 43 { | 43 { |
| 44 'action_name': 'bake_in_configs', | 44 'action_name': 'bake_in_configs', |
| 45 'variables': { | 45 'variables': { |
| 46 'bake_in_configs_script': 'domain_reliability/bake_in_configs.py', | 46 'bake_in_configs_script': 'domain_reliability/bake_in_configs.py', |
| 47 'baked_in_configs_cc': | 47 'baked_in_configs_cc': |
| 48 '<(INTERMEDIATE_DIR)/domain_reliability/baked_in_configs.cc', | 48 '<(INTERMEDIATE_DIR)/domain_reliability/baked_in_configs.cc', |
| 49 'baked_in_configs': [ | 49 'baked_in_configs': [ |
| 50 'domain_reliability/baked_in_configs/apis_google_com.json', | 50 'domain_reliability/baked_in_configs/apis_google_com.json', |
| 51 'domain_reliability/baked_in_configs/ddm_google_com.json', | 51 'domain_reliability/baked_in_configs/ddm_google_com.json', |
| 52 'domain_reliability/baked_in_configs/drive_google_com.json', |
| 53 'domain_reliability/baked_in_configs/mail_google_com.json', |
| 52 'domain_reliability/baked_in_configs/ssl_gstatic_com.json', | 54 'domain_reliability/baked_in_configs/ssl_gstatic_com.json', |
| 53 'domain_reliability/baked_in_configs/www_google_com.json', | 55 'domain_reliability/baked_in_configs/www_google_com.json', |
| 54 'domain_reliability/baked_in_configs/www_youtube_com.json', | 56 'domain_reliability/baked_in_configs/www_youtube_com.json', |
| 55 ], | 57 ], |
| 56 }, | 58 }, |
| 57 'inputs': [ | 59 'inputs': [ |
| 58 '<(bake_in_configs_script)', | 60 '<(bake_in_configs_script)', |
| 59 '<@(baked_in_configs)', | 61 '<@(baked_in_configs)', |
| 60 ], | 62 ], |
| 61 'outputs': [ | 63 'outputs': [ |
| 62 '<(baked_in_configs_cc)' | 64 '<(baked_in_configs_cc)' |
| 63 ], | 65 ], |
| 64 'action': ['python', | 66 'action': ['python', |
| 65 '<(bake_in_configs_script)', | 67 '<(bake_in_configs_script)', |
| 66 '<@(baked_in_configs)', | 68 '<@(baked_in_configs)', |
| 67 '<(baked_in_configs_cc)'], | 69 '<(baked_in_configs_cc)'], |
| 68 'process_outputs_as_sources': 1, | 70 'process_outputs_as_sources': 1, |
| 69 'message': 'Baking in Domain Reliability configs', | 71 'message': 'Baking in Domain Reliability configs', |
| 70 }, | 72 }, |
| 71 ], | 73 ], |
| 72 }, | 74 }, |
| 73 ], | 75 ], |
| 74 } | 76 } |
| OLD | NEW |