| 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 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 # GN Version: //components/data_reduction_proxy/content | 9 # GN Version: //components/data_reduction_proxy/content |
| 10 'target_name': 'data_reduction_proxy_content', | 10 'target_name': 'data_reduction_proxy_content', |
| 11 'type': 'static_library', | 11 'type': 'static_library', |
| 12 'dependencies': [ | 12 'dependencies': [ |
| 13 '../base/base.gyp:base', | 13 '../base/base.gyp:base', |
| 14 '../content/content.gyp:content_browser', | 14 '../content/content.gyp:content_browser', |
| 15 '../skia/skia.gyp:skia', | 15 '../skia/skia.gyp:skia', |
| 16 '../ui/base/ui_base.gyp:ui_base', |
| 17 'components_resources.gyp:components_resources', |
| 18 'components_strings.gyp:components_strings', |
| 16 ], | 19 ], |
| 17 'include_dirs': [ | 20 'include_dirs': [ |
| 18 '..', | 21 '..', |
| 19 ], | 22 ], |
| 20 'sources': [ | 23 'sources': [ |
| 21 # Note: sources list duplicated in GN build. | 24 # Note: sources list duplicated in GN build. |
| 25 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_blockin
g_page.cc', |
| 26 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_blockin
g_page.h', |
| 22 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_resourc
e_throttle.cc', | 27 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_resourc
e_throttle.cc', |
| 23 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_resourc
e_throttle.h', | 28 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_resourc
e_throttle.h', |
| 24 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_mana
ger.cc', | 29 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_mana
ger.cc', |
| 25 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_mana
ger.h', | 30 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_mana
ger.h', |
| 26 'data_reduction_proxy/content/browser/content_data_reduction_proxy_debug
_ui_service.cc', | 31 'data_reduction_proxy/content/browser/content_data_reduction_proxy_debug
_ui_service.cc', |
| 27 'data_reduction_proxy/content/browser/content_data_reduction_proxy_debug
_ui_service.h', | 32 'data_reduction_proxy/content/browser/content_data_reduction_proxy_debug
_ui_service.h', |
| 28 ], | 33 ], |
| 29 }, | 34 }, |
| 30 { | 35 { |
| 31 # GN version: //components/data_reduction_proxy/core/browser | 36 # GN version: //components/data_reduction_proxy/core/browser |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 'includes': [ | 174 'includes': [ |
| 170 '../build/util/version.gypi', | 175 '../build/util/version.gypi', |
| 171 ], | 176 ], |
| 172 }, | 177 }, |
| 173 ], | 178 ], |
| 174 }, | 179 }, |
| 175 | 180 |
| 176 ], | 181 ], |
| 177 } | 182 } |
| 178 | 183 |
| OLD | NEW |