Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: components/data_reduction_proxy.gypi

Issue 333113002: Move data reduction proxy to Chrome-Proxy header for authentication (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@flywheel-refactor-net-fake-a-redirect-response-headers-chrome-proxy-auth
Patch Set: Callback returns void Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 'target_name': 'data_reduction_proxy_browser', 9 'target_name': 'data_reduction_proxy_browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 16 matching lines...) Expand all
27 'data_reduction_proxy/browser/data_reduction_proxy_metrics.cc', 27 'data_reduction_proxy/browser/data_reduction_proxy_metrics.cc',
28 'data_reduction_proxy/browser/data_reduction_proxy_metrics.h', 28 'data_reduction_proxy/browser/data_reduction_proxy_metrics.h',
29 'data_reduction_proxy/browser/data_reduction_proxy_params.cc', 29 'data_reduction_proxy/browser/data_reduction_proxy_params.cc',
30 'data_reduction_proxy/browser/data_reduction_proxy_params.h', 30 'data_reduction_proxy/browser/data_reduction_proxy_params.h',
31 'data_reduction_proxy/browser/data_reduction_proxy_prefs.cc', 31 'data_reduction_proxy/browser/data_reduction_proxy_prefs.cc',
32 'data_reduction_proxy/browser/data_reduction_proxy_prefs.h', 32 'data_reduction_proxy/browser/data_reduction_proxy_prefs.h',
33 'data_reduction_proxy/browser/data_reduction_proxy_protocol.cc', 33 'data_reduction_proxy/browser/data_reduction_proxy_protocol.cc',
34 'data_reduction_proxy/browser/data_reduction_proxy_protocol.h', 34 'data_reduction_proxy/browser/data_reduction_proxy_protocol.h',
35 'data_reduction_proxy/browser/data_reduction_proxy_settings.cc', 35 'data_reduction_proxy/browser/data_reduction_proxy_settings.cc',
36 'data_reduction_proxy/browser/data_reduction_proxy_settings.h', 36 'data_reduction_proxy/browser/data_reduction_proxy_settings.h',
37 'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.cc' ,
38 'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.h',
39 ], 37 ],
40 }, 38 },
41 { 39 {
42 'target_name': 'data_reduction_proxy_common', 40 'target_name': 'data_reduction_proxy_common',
43 'type': 'static_library', 41 'type': 'static_library',
44 'dependencies': [ 42 'dependencies': [
45 '../base/base.gyp:base', 43 '../base/base.gyp:base',
46 ], 44 ],
47 'include_dirs': [ 45 'include_dirs': [
48 '..', 46 '..',
(...skipping 16 matching lines...) Expand all
65 '../net/net.gyp:net_test_support', 63 '../net/net.gyp:net_test_support',
66 '../testing/gmock.gyp:gmock', 64 '../testing/gmock.gyp:gmock',
67 '../testing/gtest.gyp:gtest', 65 '../testing/gtest.gyp:gtest',
68 'data_reduction_proxy_browser', 66 'data_reduction_proxy_browser',
69 'data_reduction_proxy_common', 67 'data_reduction_proxy_common',
70 ], 68 ],
71 'include_dirs': [ 69 'include_dirs': [
72 '..', 70 '..',
73 ], 71 ],
74 'sources': [ 72 'sources': [
73 'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc' ,
74 'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h',
75 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.c c', 75 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.c c',
76 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h ', 76 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h ',
77 ], 77 ],
78 }, 78 },
79 ], 79 ],
80 } 80 }
81 81
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698