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

Unified Diff: components/variations/net/BUILD.gn

Issue 668863002: [Clean up] Move VariationsHttpHeaderProvider into a subdirectory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add GN dependency on //components/google/core/browser Created 6 years, 2 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/variations/DEPS ('k') | components/variations/net/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/variations/net/BUILD.gn
diff --git a/components/variations/net/BUILD.gn b/components/variations/net/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..60ce96c93bd21b4533f517fa0befdf89d8275803
--- /dev/null
+++ b/components/variations/net/BUILD.gn
@@ -0,0 +1,20 @@
+# 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.
+
+source_set("variations_http_provider") {
jamesr 2014/10/24 00:30:05 this is very stuttery for a GN label. source_set n
Ilya Sherman 2014/10/24 00:44:45 Done. I originally chose the name to match the GY
+ sources = [
+ "variations_http_header_provider.cc",
+ "variations_http_header_provider.h",
+ ]
+
+ public_deps = [
jamesr 2014/10/24 00:30:05 collapse this to one line: public_deps = [ "//com
Ilya Sherman 2014/10/24 00:44:45 Done.
+ "//components/variations",
+ ]
+ deps = [
+ "//base",
+ "//components/google/core/browser",
+ "//components/variations/proto",
+ "//net",
+ ]
+}
« no previous file with comments | « components/variations/DEPS ('k') | components/variations/net/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698