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

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

Issue 382663002: Add components and CLD to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android Created 6 years, 5 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
« no previous file with comments | « components/data_reduction_proxy.gypi ('k') | components/data_reduction_proxy/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/data_reduction_proxy/browser/BUILD.gn
diff --git a/components/data_reduction_proxy/browser/BUILD.gn b/components/data_reduction_proxy/browser/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..0bc987944119ea25b343d12bf5dc23389b2afa77
--- /dev/null
+++ b/components/data_reduction_proxy/browser/BUILD.gn
@@ -0,0 +1,52 @@
+# 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("browser") {
+ sources = [
+ "data_reduction_proxy_auth_request_handler.cc",
+ "data_reduction_proxy_auth_request_handler.h",
+ "data_reduction_proxy_config_service.cc",
+ "data_reduction_proxy_config_service.h",
+ "data_reduction_proxy_configurator.h",
+ "data_reduction_proxy_metrics.cc",
+ "data_reduction_proxy_metrics.h",
+ "data_reduction_proxy_params.cc",
+ "data_reduction_proxy_params.h",
+ "data_reduction_proxy_prefs.cc",
+ "data_reduction_proxy_prefs.h",
+ "data_reduction_proxy_protocol.cc",
+ "data_reduction_proxy_protocol.h",
+ "data_reduction_proxy_settings.cc",
+ "data_reduction_proxy_settings.h",
+ "data_reduction_proxy_usage_stats.cc",
+ "data_reduction_proxy_usage_stats.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/data_reduction_proxy/common",
+ "//components/pref_registry",
+ "//crypto",
+ "//net",
+ ]
+}
+
+static_library("test_support") {
+ sources = [
+ "data_reduction_proxy_params_test_utils.cc",
+ "data_reduction_proxy_params_test_utils.h",
+ "data_reduction_proxy_settings_test_utils.cc",
+ "data_reduction_proxy_settings_test_utils.h",
+ ]
+
+ deps = [
+ ":browser",
+ "//base",
+ "//components/data_reduction_proxy/common",
+ "//net",
+ "//net:test_support",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « components/data_reduction_proxy.gypi ('k') | components/data_reduction_proxy/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698