| 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 # GN version: //components/domain_reliability |
| 8 'target_name': 'domain_reliability', | 9 'target_name': 'domain_reliability', |
| 9 'type': '<(component)', | 10 'type': '<(component)', |
| 10 'dependencies': [ | 11 'dependencies': [ |
| 11 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 12 '../components/components.gyp:keyed_service_core', | 13 '../components/components.gyp:keyed_service_core', |
| 13 '../content/content.gyp:content_browser', | 14 '../content/content.gyp:content_browser', |
| 14 '../net/net.gyp:net', | 15 '../net/net.gyp:net', |
| 15 '../url/url.gyp:url_lib', | 16 '../url/url.gyp:url_lib', |
| 16 ], | 17 ], |
| 17 'include_dirs': [ | 18 'include_dirs': [ |
| 18 '..', | 19 '..', |
| 19 ], | 20 ], |
| 20 'defines': [ | 21 'defines': [ |
| 21 'DOMAIN_RELIABILITY_IMPLEMENTATION', | 22 'DOMAIN_RELIABILITY_IMPLEMENTATION', |
| 22 ], | 23 ], |
| 23 'sources': [ | 24 'sources': [ |
| 25 # Note: sources list duplicated in GN build. |
| 24 'domain_reliability/baked_in_configs.h', | 26 'domain_reliability/baked_in_configs.h', |
| 25 'domain_reliability/beacon.cc', | 27 'domain_reliability/beacon.cc', |
| 26 'domain_reliability/beacon.h', | 28 'domain_reliability/beacon.h', |
| 27 'domain_reliability/clear_mode.h', | 29 'domain_reliability/clear_mode.h', |
| 28 'domain_reliability/config.cc', | 30 'domain_reliability/config.cc', |
| 29 'domain_reliability/config.h', | 31 'domain_reliability/config.h', |
| 30 'domain_reliability/context.cc', | 32 'domain_reliability/context.cc', |
| 31 'domain_reliability/context.h', | 33 'domain_reliability/context.h', |
| 32 'domain_reliability/dispatcher.cc', | 34 'domain_reliability/dispatcher.cc', |
| 33 'domain_reliability/dispatcher.h', | 35 'domain_reliability/dispatcher.h', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 '<(bake_in_configs_script)', | 73 '<(bake_in_configs_script)', |
| 72 '<@(baked_in_configs)', | 74 '<@(baked_in_configs)', |
| 73 '<(baked_in_configs_cc)'], | 75 '<(baked_in_configs_cc)'], |
| 74 'process_outputs_as_sources': 1, | 76 'process_outputs_as_sources': 1, |
| 75 'message': 'Baking in Domain Reliability configs', | 77 'message': 'Baking in Domain Reliability configs', |
| 76 }, | 78 }, |
| 77 ], | 79 ], |
| 78 }, | 80 }, |
| 79 ], | 81 ], |
| 80 } | 82 } |
| OLD | NEW |