| 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/core/browser | 9 # GN version: //components/data_reduction_proxy/core/browser |
| 10 'target_name': 'data_reduction_proxy_core_browser', | 10 'target_name': 'data_reduction_proxy_core_browser', |
| 11 'type': 'static_library', | 11 'type': 'static_library', |
| 12 'conditions': [ | 12 'conditions': [ |
| 13 ['OS != "android" and OS != "ios"', { | 13 ['OS != "android" and OS != "ios"', { |
| 14 'dependencies' : [ | 14 'dependencies' : [ |
| 15 '../google_apis/google_apis.gyp:google_apis', | 15 '../google_apis/google_apis.gyp:google_apis', |
| 16 ] | 16 ] |
| 17 }], | 17 }], |
| 18 ], | 18 ], |
| 19 'dependencies': [ | 19 'dependencies': [ |
| 20 'data_reduction_proxy_version_header', | 20 'data_reduction_proxy_version_header', |
| 21 '../base/base.gyp:base', | 21 '../base/base.gyp:base', |
| 22 '../crypto/crypto.gyp:crypto', | 22 '../crypto/crypto.gyp:crypto', |
| 23 '../net/net.gyp:net', | 23 '../net/net.gyp:net', |
| 24 '../url/url.gyp:url_lib', |
| 24 'data_reduction_proxy_core_common', | 25 'data_reduction_proxy_core_common', |
| 25 'pref_registry', | 26 'pref_registry', |
| 26 ], | 27 ], |
| 27 'include_dirs': [ | 28 'include_dirs': [ |
| 28 '..', | 29 '..', |
| 29 ], | 30 ], |
| 30 'sources': [ | 31 'sources': [ |
| 31 # Note: sources list duplicated in GN build. | 32 # Note: sources list duplicated in GN build. |
| 32 'data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_han
dler.cc', | 33 'data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_han
dler.cc', |
| 33 'data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_han
dler.h', | 34 'data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_han
dler.h', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 53 'data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.cc', | 54 'data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.cc', |
| 54 'data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.h', | 55 'data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.h', |
| 55 ], | 56 ], |
| 56 }, | 57 }, |
| 57 { | 58 { |
| 58 # GN version: //components/data_reduction_proxy/core/common | 59 # GN version: //components/data_reduction_proxy/core/common |
| 59 'target_name': 'data_reduction_proxy_core_common', | 60 'target_name': 'data_reduction_proxy_core_common', |
| 60 'type': 'static_library', | 61 'type': 'static_library', |
| 61 'dependencies': [ | 62 'dependencies': [ |
| 62 '../base/base.gyp:base', | 63 '../base/base.gyp:base', |
| 64 '../url/url.gyp:url_lib', |
| 63 ], | 65 ], |
| 64 'include_dirs': [ | 66 'include_dirs': [ |
| 65 '..', | 67 '..', |
| 66 ], | 68 ], |
| 67 'sources': [ | 69 'sources': [ |
| 68 # Note: sources list duplicated in GN build. | 70 # Note: sources list duplicated in GN build. |
| 69 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.cc', | 71 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.cc', |
| 70 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.h', | 72 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.h', |
| 71 'data_reduction_proxy/core/common/data_reduction_proxy_headers.cc', | 73 'data_reduction_proxy/core/common/data_reduction_proxy_headers.cc', |
| 72 'data_reduction_proxy/core/common/data_reduction_proxy_headers.h', | 74 'data_reduction_proxy/core/common/data_reduction_proxy_headers.h', |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'includes': [ | 135 'includes': [ |
| 134 '../build/util/version.gypi', | 136 '../build/util/version.gypi', |
| 135 ], | 137 ], |
| 136 }, | 138 }, |
| 137 ], | 139 ], |
| 138 }, | 140 }, |
| 139 | 141 |
| 140 ], | 142 ], |
| 141 } | 143 } |
| 142 | 144 |
| OLD | NEW |