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 | |
49 'target_name': 'feedback_proto', | 48 'target_name': 'feedback_proto', |
50 'type': 'static_library', | 49 'type': 'static_library', |
51 'sources': [ | 50 'sources': [ |
52 'feedback/proto/annotations.proto', | 51 'feedback/proto/annotations.proto', |
53 'feedback/proto/chrome.proto', | 52 'feedback/proto/chrome.proto', |
54 'feedback/proto/common.proto', | 53 'feedback/proto/common.proto', |
55 'feedback/proto/dom.proto', | 54 'feedback/proto/dom.proto', |
56 'feedback/proto/extension.proto', | 55 'feedback/proto/extension.proto', |
57 'feedback/proto/math.proto', | 56 'feedback/proto/math.proto', |
58 'feedback/proto/web.proto', | 57 'feedback/proto/web.proto', |
59 ], | 58 ], |
60 'variables': { | 59 'variables': { |
61 'proto_in_dir': 'feedback/proto', | 60 'proto_in_dir': 'feedback/proto', |
62 'proto_out_dir': 'components/feedback/proto', | 61 'proto_out_dir': 'components/feedback/proto', |
63 }, | 62 }, |
64 'includes': [ '../build/protoc.gypi' ] | 63 'includes': [ '../build/protoc.gypi' ] |
65 }, | 64 }, |
66 ], | 65 ], |
67 } | 66 } |
OLD | NEW |