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

Unified Diff: components/data_reduction_proxy/content/browser/BUILD.gn

Issue 684223003: Data Reduction Proxy Interstitials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Thestig comment and test fix Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
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..7bc2cf99ec1c6717d8454a3f4144e02936ed2a4a
--- /dev/null
+++ b/components/data_reduction_proxy/content/browser/BUILD.gn
@@ -0,0 +1,35 @@
+# Copyright 2015 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("browser") {
+ sources = [
+ "content_data_reduction_proxy_debug_ui_service.cc",
+ "content_data_reduction_proxy_debug_ui_service.h",
+ "data_reduction_proxy_debug_resource_throttle.cc",
+ "data_reduction_proxy_debug_resource_throttle.h",
+ "data_reduction_proxy_debug_ui_manager.cc",
+ "data_reduction_proxy_debug_ui_manager.h",
+ ]
+
+ deps = [
+ "//base",
+ "//content/public/browser",
+ "//skia",
+ ]
+}
+
+if (is_android) {
+ source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "data_reduction_proxy_debug_resource_throttle_unittest.cc",
+ "data_reduction_proxy_debug_ui_manager_unittest.cc",
+ ]
+
+ deps = [
+ ":browser",
+ "//testing/gtest",
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698