Index: components/data_reduction_proxy/content/browser/BUILD.gn |
diff --git a/components/data_reduction_proxy/content/browser/BUILD.gn b/components/data_reduction_proxy/content/browser/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e4272077126a1ac36e8d915d5ddd0958fcc14630 |
--- /dev/null |
+++ b/components/data_reduction_proxy/content/browser/BUILD.gn |
@@ -0,0 +1,33 @@ |
+# Copyright 2014 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+static_library("content") { |
+ sources = [ |
+ "data_reduction_proxy_resource_throttle.cc", |
+ "data_reduction_proxy_resource_throttle.h", |
+ "data_reduction_proxy_ui_manager.cc", |
+ "data_reduction_proxy_ui_manager.h", |
+ "data_reduction_proxy_ui_service.cc", |
+ "data_reduction_proxy_ui_service.h", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//content/public/browser", |
+ "//skia", |
+ ] |
+} |
+ |
+source_set("unit_tests") { |
+ testonly = true |
+ sources = [ |
+ "data_reduction_proxy_resource_throttle_unittest.cc", |
+ ] |
+ |
+ deps = [ |
+ ":content", |
+ "//testing/gmock", |
+ "//testing/gtest", |
+ ] |
+} |