| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 # GN version: //components/web_resource | |
| 9 'target_name': 'web_resource', | |
| 10 'type': 'static_library', | |
| 11 'include_dirs': [ | |
| 12 '..', | |
| 13 ], | |
| 14 'dependencies': [ | |
| 15 '../base/base.gyp:base', | |
| 16 '../ui/base/ui_base.gyp:ui_base', | |
| 17 '../net/net.gyp:net', | |
| 18 'pref_registry', | |
| 19 'version_info', | |
| 20 ], | |
| 21 'sources': [ | |
| 22 'web_resource/eula_accepted_notifier.cc', | |
| 23 'web_resource/eula_accepted_notifier.h', | |
| 24 'web_resource/promo_resource_service.cc', | |
| 25 'web_resource/promo_resource_service.h', | |
| 26 'web_resource/resource_request_allowed_notifier.cc', | |
| 27 'web_resource/resource_request_allowed_notifier.h', | |
| 28 'web_resource/web_resource_pref_names.cc', | |
| 29 'web_resource/web_resource_pref_names.h', | |
| 30 'web_resource/web_resource_service.cc', | |
| 31 'web_resource/web_resource_service.h', | |
| 32 ], | |
| 33 }, | |
| 34 { | |
| 35 # GN version: //components/web_resources:test_support | |
| 36 'target_name': 'web_resource_test_support', | |
| 37 'type': 'static_library', | |
| 38 'include_dirs': [ | |
| 39 '..', | |
| 40 ], | |
| 41 'dependencies': [ | |
| 42 'web_resource', | |
| 43 ], | |
| 44 'sources': [ | |
| 45 'web_resource/resource_request_allowed_notifier_test_util.cc', | |
| 46 'web_resource/resource_request_allowed_notifier_test_util.h', | |
| 47 ], | |
| 48 }, | |
| 49 ], | |
| 50 } | |
| OLD | NEW |