| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 static_library("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "content_data_reduction_proxy_lofi_helper.cc", |
| 8 "content_data_reduction_proxy_lofi_helper.h", |
| 7 "data_reduction_proxy_message_filter.cc", | 9 "data_reduction_proxy_message_filter.cc", |
| 8 "data_reduction_proxy_message_filter.h", | 10 "data_reduction_proxy_message_filter.h", |
| 9 ] | 11 ] |
| 10 | 12 |
| 11 deps = [ | 13 deps = [ |
| 12 "//base", | 14 "//base", |
| 13 "//components/data_reduction_proxy/content/common", | 15 "//components/data_reduction_proxy/content/common", |
| 14 "//content/public/browser", | 16 "//content/public/browser", |
| 15 "//ipc", | 17 "//ipc", |
| 16 "//net", | 18 "//net", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "data_reduction_proxy_debug_resource_throttle_unittest.cc", | 61 "data_reduction_proxy_debug_resource_throttle_unittest.cc", |
| 60 "data_reduction_proxy_debug_ui_manager_unittest.cc", | 62 "data_reduction_proxy_debug_ui_manager_unittest.cc", |
| 61 ] | 63 ] |
| 62 | 64 |
| 63 deps += [ | 65 deps += [ |
| 64 "//skia", | 66 "//skia", |
| 65 "//third_party/mojo/src/mojo/public/cpp/bindings", | 67 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 66 ] | 68 ] |
| 67 } | 69 } |
| 68 } | 70 } |
| OLD | NEW |