OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 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
| |
6 sources = [ | |
7 "variations_http_header_provider.cc", | |
8 "variations_http_header_provider.h", | |
9 ] | |
10 | |
11 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.
| |
12 "//components/variations", | |
13 ] | |
14 deps = [ | |
15 "//base", | |
16 "//components/google/core/browser", | |
17 "//components/variations/proto", | |
18 "//net", | |
19 ] | |
20 } | |
OLD | NEW |