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", |
+ ] |
+} |