| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 { | 108 { |
| 87 # GN version: //components/data_reduction_proxy/core/browser:test_support | 109 # GN version: //components/data_reduction_proxy/core/browser:test_support |
| 88 'target_name': 'data_reduction_proxy_test_support', | 110 'target_name': 'data_reduction_proxy_test_support', |
| 89 'type': 'static_library', | 111 'type': 'static_library', |
| 90 'dependencies' : [ | 112 'dependencies' : [ |
| 91 '../base/base.gyp:base', | 113 '../base/base.gyp:base', |
| 92 '../net/net.gyp:net', | 114 '../net/net.gyp:net', |
| 93 '../net/net.gyp:net_test_support', | 115 '../net/net.gyp:net_test_support', |
| 94 '../testing/gmock.gyp:gmock', | 116 '../testing/gmock.gyp:gmock', |
| 95 '../testing/gtest.gyp:gtest', | 117 '../testing/gtest.gyp:gtest', |
| 118 'data_reduction_proxy_content', |
| 96 'data_reduction_proxy_core_browser', | 119 'data_reduction_proxy_core_browser', |
| 97 'data_reduction_proxy_core_common', | 120 'data_reduction_proxy_core_common', |
| 98 ], | 121 ], |
| 99 'include_dirs': [ | 122 'include_dirs': [ |
| 100 '..', | 123 '..', |
| 101 ], | 124 ], |
| 102 'sources': [ | 125 'sources': [ |
| 103 # Note: sources list duplicated in GN build. | 126 # Note: sources list duplicated in GN build. |
| 104 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut
ils.cc', | 127 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut
ils.cc', |
| 105 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut
ils.h', | 128 '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... |
| 138 'includes': [ | 161 'includes': [ |
| 139 '../build/util/version.gypi', | 162 '../build/util/version.gypi', |
| 140 ], | 163 ], |
| 141 }, | 164 }, |
| 142 ], | 165 ], |
| 143 }, | 166 }, |
| 144 | 167 |
| 145 ], | 168 ], |
| 146 } | 169 } |
| 147 | 170 |
| OLD | NEW |