| 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 'target_name': 'data_reduction_proxy_browser', | 9 'target_name': 'data_reduction_proxy_browser', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 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/data_reduction_proxy_usage_stats.cc', | 37 'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.cc', |
| 38 'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.h', | 38 'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.h', |
| 39 'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.cc'
, | |
| 40 'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.h', | |
| 41 ], | 39 ], |
| 42 }, | 40 }, |
| 43 { | 41 { |
| 44 'target_name': 'data_reduction_proxy_common', | 42 'target_name': 'data_reduction_proxy_common', |
| 45 'type': 'static_library', | 43 'type': 'static_library', |
| 46 'dependencies': [ | 44 'dependencies': [ |
| 47 '../base/base.gyp:base', | 45 '../base/base.gyp:base', |
| 48 ], | 46 ], |
| 49 'include_dirs': [ | 47 'include_dirs': [ |
| 50 '..', | 48 '..', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 67 '../net/net.gyp:net_test_support', | 65 '../net/net.gyp:net_test_support', |
| 68 '../testing/gmock.gyp:gmock', | 66 '../testing/gmock.gyp:gmock', |
| 69 '../testing/gtest.gyp:gtest', | 67 '../testing/gtest.gyp:gtest', |
| 70 'data_reduction_proxy_browser', | 68 'data_reduction_proxy_browser', |
| 71 'data_reduction_proxy_common', | 69 'data_reduction_proxy_common', |
| 72 ], | 70 ], |
| 73 'include_dirs': [ | 71 'include_dirs': [ |
| 74 '..', | 72 '..', |
| 75 ], | 73 ], |
| 76 'sources': [ | 74 'sources': [ |
| 75 'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc'
, |
| 76 'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h', |
| 77 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.c
c', | 77 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.c
c', |
| 78 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h
', | 78 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h
', |
| 79 ], | 79 ], |
| 80 }, | 80 }, |
| 81 ], | 81 ], |
| 82 } | 82 } |
| 83 | 83 |
| OLD | NEW |