| 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 { |
| 9 # GN Version: //components/data_reduction_proxy/content |
| 10 'target_name': 'data_reduction_proxy_content', |
| 11 'type': 'static_library', |
| 12 'dependencies': [ |
| 13 '../base/base.gyp:base', |
| 14 '../content/content.gyp:content_browser', |
| 15 '../skia/skia.gyp:skia', |
| 16 ], |
| 17 'include_dirs': [ |
| 18 '..', |
| 19 ], |
| 20 'sources': [ |
| 21 # Note: sources list duplicated in GN build. |
| 22 'data_reduction_proxy/content/browser/data_reduction_proxy_resource_thro
ttle.cc', |
| 23 'data_reduction_proxy/content/browser/data_reduction_proxy_resource_thro
ttle.h', |
| 24 'data_reduction_proxy/content/browser/data_reduction_proxy_ui_manager.cc
', |
| 25 'data_reduction_proxy/content/browser/data_reduction_proxy_ui_manager.h'
, |
| 26 'data_reduction_proxy/content/browser/data_reduction_proxy_ui_service.cc
', |
| 27 'data_reduction_proxy/content/browser/data_reduction_proxy_ui_service.h'
, |
| 28 ], |
| 29 }, |
| 8 { | 30 { |
| 9 # GN version: //components/data_reduction_proxy/core/browser | 31 # GN version: //components/data_reduction_proxy/core/browser |
| 10 'target_name': 'data_reduction_proxy_core_browser', | 32 'target_name': 'data_reduction_proxy_core_browser', |
| 11 'type': 'static_library', | 33 'type': 'static_library', |
| 12 'conditions': [ | 34 'conditions': [ |
| 13 ['OS != "android" and OS != "ios"', { | 35 ['OS != "android" and OS != "ios"', { |
| 14 'dependencies' : [ | 36 'dependencies' : [ |
| 15 '../google_apis/google_apis.gyp:google_apis', | 37 '../google_apis/google_apis.gyp:google_apis', |
| 16 ] | 38 ] |
| 17 }], | 39 }], |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 { | 107 { |
| 86 # GN version: //components/data_reduction_proxy/core/browser:test_support | 108 # GN version: //components/data_reduction_proxy/core/browser:test_support |
| 87 'target_name': 'data_reduction_proxy_test_support', | 109 'target_name': 'data_reduction_proxy_test_support', |
| 88 'type': 'static_library', | 110 'type': 'static_library', |
| 89 'dependencies' : [ | 111 'dependencies' : [ |
| 90 '../base/base.gyp:base', | 112 '../base/base.gyp:base', |
| 91 '../net/net.gyp:net', | 113 '../net/net.gyp:net', |
| 92 '../net/net.gyp:net_test_support', | 114 '../net/net.gyp:net_test_support', |
| 93 '../testing/gmock.gyp:gmock', | 115 '../testing/gmock.gyp:gmock', |
| 94 '../testing/gtest.gyp:gtest', | 116 '../testing/gtest.gyp:gtest', |
| 117 'data_reduction_proxy_content', |
| 95 'data_reduction_proxy_core_browser', | 118 'data_reduction_proxy_core_browser', |
| 96 'data_reduction_proxy_core_common', | 119 'data_reduction_proxy_core_common', |
| 97 ], | 120 ], |
| 98 'include_dirs': [ | 121 'include_dirs': [ |
| 99 '..', | 122 '..', |
| 100 ], | 123 ], |
| 101 'sources': [ | 124 'sources': [ |
| 102 # Note: sources list duplicated in GN build. | 125 # Note: sources list duplicated in GN build. |
| 103 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut
ils.cc', | 126 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut
ils.cc', |
| 104 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut
ils.h', | 127 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut
ils.h', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 'includes': [ | 160 'includes': [ |
| 138 '../build/util/version.gypi', | 161 '../build/util/version.gypi', |
| 139 ], | 162 ], |
| 140 }, | 163 }, |
| 141 ], | 164 ], |
| 142 }, | 165 }, |
| 143 | 166 |
| 144 ], | 167 ], |
| 145 } | 168 } |
| 146 | 169 |
| OLD | NEW |