OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'feedback_component', | 8 'target_name': 'feedback_component', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
12 '../content/content.gyp:content_common', | 12 '../content/content.gyp:content_common', |
13 '../net/net.gyp:net', | 13 '../net/net.gyp:net', |
14 '../third_party/zlib/google/zip.gyp:zip', | 14 '../third_party/zlib/google/zip.gyp:zip', |
15 'keyed_service_core', | 15 'keyed_service_core', |
16 'feedback_proto', | 16 'feedback_proto', |
| 17 'components.gyp:variations_http_provider', |
17 ], | 18 ], |
18 'include_dirs': [ | 19 'include_dirs': [ |
19 '..', | 20 '..', |
20 ], | 21 ], |
21 'defines': [ | 22 'defines': [ |
22 ], | 23 ], |
23 'sources': [ | 24 'sources': [ |
24 'feedback/feedback_common.cc', | 25 'feedback/feedback_common.cc', |
25 'feedback/feedback_common.h', | 26 'feedback/feedback_common.h', |
26 'feedback/feedback_data.cc', | 27 'feedback/feedback_data.cc', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'feedback/proto/web.proto', | 59 'feedback/proto/web.proto', |
59 ], | 60 ], |
60 'variables': { | 61 'variables': { |
61 'proto_in_dir': 'feedback/proto', | 62 'proto_in_dir': 'feedback/proto', |
62 'proto_out_dir': 'components/feedback/proto', | 63 'proto_out_dir': 'components/feedback/proto', |
63 }, | 64 }, |
64 'includes': [ '../build/protoc.gypi' ] | 65 'includes': [ '../build/protoc.gypi' ] |
65 }, | 66 }, |
66 ], | 67 ], |
67 } | 68 } |
OLD | NEW |