OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': 'common', | 8 'target_name': 'common', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { | 10 'variables': { |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 'common/extensions/extension_messages.cc', | 150 'common/extensions/extension_messages.cc', |
151 'common/extensions/extension_messages.h', | 151 'common/extensions/extension_messages.h', |
152 'common/extensions/extension_process_policy.cc', | 152 'common/extensions/extension_process_policy.cc', |
153 'common/extensions/extension_process_policy.h', | 153 'common/extensions/extension_process_policy.h', |
154 'common/extensions/extension_resource.cc', | 154 'common/extensions/extension_resource.cc', |
155 'common/extensions/extension_resource.h', | 155 'common/extensions/extension_resource.h', |
156 'common/extensions/extension_set.cc', | 156 'common/extensions/extension_set.cc', |
157 'common/extensions/extension_set.h', | 157 'common/extensions/extension_set.h', |
158 'common/extensions/feature_switch.cc', | 158 'common/extensions/feature_switch.cc', |
159 'common/extensions/feature_switch.h', | 159 'common/extensions/feature_switch.h', |
| 160 'common/extensions/features/complex_feature.cc', |
| 161 'common/extensions/features/complex_feature.h', |
| 162 'common/extensions/features/complex_feature_provider.cc', |
| 163 'common/extensions/features/complex_feature_provider.h', |
160 'common/extensions/features/feature.cc', | 164 'common/extensions/features/feature.cc', |
161 'common/extensions/features/feature.h', | 165 'common/extensions/features/feature.h', |
162 'common/extensions/features/feature_provider.h', | 166 'common/extensions/features/feature_provider.h', |
163 'common/extensions/features/manifest_feature.cc', | 167 'common/extensions/features/manifest_feature.cc', |
164 'common/extensions/features/manifest_feature.h', | 168 'common/extensions/features/manifest_feature.h', |
165 'common/extensions/features/permission_feature.cc', | 169 'common/extensions/features/permission_feature.cc', |
166 'common/extensions/features/permission_feature.h', | 170 'common/extensions/features/permission_feature.h', |
| 171 'common/extensions/features/simple_feature.cc', |
| 172 'common/extensions/features/simple_feature.h', |
167 'common/extensions/features/simple_feature_provider.cc', | 173 'common/extensions/features/simple_feature_provider.cc', |
168 'common/extensions/features/simple_feature_provider.h', | 174 'common/extensions/features/simple_feature_provider.h', |
169 'common/extensions/file_browser_handler.cc', | 175 'common/extensions/file_browser_handler.cc', |
170 'common/extensions/file_browser_handler.h', | 176 'common/extensions/file_browser_handler.h', |
171 'common/extensions/manifest.cc', | 177 'common/extensions/manifest.cc', |
172 'common/extensions/manifest.h', | 178 'common/extensions/manifest.h', |
173 'common/extensions/matcher/regex_set_matcher.cc', | 179 'common/extensions/matcher/regex_set_matcher.cc', |
174 'common/extensions/matcher/regex_set_matcher.h', | 180 'common/extensions/matcher/regex_set_matcher.h', |
175 'common/extensions/matcher/string_pattern.cc', | 181 'common/extensions/matcher/string_pattern.cc', |
176 'common/extensions/matcher/string_pattern.h', | 182 'common/extensions/matcher/string_pattern.h', |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 'common/metrics/proto/user_action_event.proto', | 624 'common/metrics/proto/user_action_event.proto', |
619 ], | 625 ], |
620 'variables': { | 626 'variables': { |
621 'proto_in_dir': 'common/metrics/proto', | 627 'proto_in_dir': 'common/metrics/proto', |
622 'proto_out_dir': 'chrome/common/metrics/proto', | 628 'proto_out_dir': 'chrome/common/metrics/proto', |
623 }, | 629 }, |
624 'includes': [ '../build/protoc.gypi' ], | 630 'includes': [ '../build/protoc.gypi' ], |
625 }, | 631 }, |
626 ], | 632 ], |
627 } | 633 } |
OLD | NEW |