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': [ |
(...skipping 27 matching lines...) Expand all Loading... |
38 'feedback/feedback_uploader_factory.cc', | 38 'feedback/feedback_uploader_factory.cc', |
39 'feedback/feedback_uploader_factory.h', | 39 'feedback/feedback_uploader_factory.h', |
40 'feedback/feedback_util.cc', | 40 'feedback/feedback_util.cc', |
41 'feedback/feedback_util.h', | 41 'feedback/feedback_util.h', |
42 'feedback/tracing_manager.cc', | 42 'feedback/tracing_manager.cc', |
43 'feedback/tracing_manager.h', | 43 'feedback/tracing_manager.h', |
44 ], | 44 ], |
45 }, | 45 }, |
46 { | 46 { |
47 # Protobuf compiler / generate rule for feedback | 47 # Protobuf compiler / generate rule for feedback |
| 48 # GN version: //components/feedback/proto |
48 'target_name': 'feedback_proto', | 49 'target_name': 'feedback_proto', |
49 'type': 'static_library', | 50 'type': 'static_library', |
50 'sources': [ | 51 'sources': [ |
51 'feedback/proto/annotations.proto', | 52 'feedback/proto/annotations.proto', |
52 'feedback/proto/chrome.proto', | 53 'feedback/proto/chrome.proto', |
53 'feedback/proto/common.proto', | 54 'feedback/proto/common.proto', |
54 'feedback/proto/dom.proto', | 55 'feedback/proto/dom.proto', |
55 'feedback/proto/extension.proto', | 56 'feedback/proto/extension.proto', |
56 'feedback/proto/math.proto', | 57 'feedback/proto/math.proto', |
57 'feedback/proto/web.proto', | 58 'feedback/proto/web.proto', |
58 ], | 59 ], |
59 'variables': { | 60 'variables': { |
60 'proto_in_dir': 'feedback/proto', | 61 'proto_in_dir': 'feedback/proto', |
61 'proto_out_dir': 'components/feedback/proto', | 62 'proto_out_dir': 'components/feedback/proto', |
62 }, | 63 }, |
63 'includes': [ '../build/protoc.gypi' ] | 64 'includes': [ '../build/protoc.gypi' ] |
64 }, | 65 }, |
65 ], | 66 ], |
66 } | 67 } |
OLD | NEW |