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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 'common/extensions/extension_messages.cc', | 155 'common/extensions/extension_messages.cc', |
156 'common/extensions/extension_messages.h', | 156 'common/extensions/extension_messages.h', |
157 'common/extensions/extension_process_policy.cc', | 157 'common/extensions/extension_process_policy.cc', |
158 'common/extensions/extension_process_policy.h', | 158 'common/extensions/extension_process_policy.h', |
159 'common/extensions/extension_resource.cc', | 159 'common/extensions/extension_resource.cc', |
160 'common/extensions/extension_resource.h', | 160 'common/extensions/extension_resource.h', |
161 'common/extensions/extension_set.cc', | 161 'common/extensions/extension_set.cc', |
162 'common/extensions/extension_set.h', | 162 'common/extensions/extension_set.h', |
163 'common/extensions/feature_switch.cc', | 163 'common/extensions/feature_switch.cc', |
164 'common/extensions/feature_switch.h', | 164 'common/extensions/feature_switch.h', |
| 165 'common/extensions/features/base_feature_provider.cc', |
| 166 'common/extensions/features/base_feature_provider.h', |
| 167 'common/extensions/features/complex_feature.cc', |
| 168 'common/extensions/features/complex_feature.h', |
165 'common/extensions/features/feature.cc', | 169 'common/extensions/features/feature.cc', |
166 'common/extensions/features/feature.h', | 170 'common/extensions/features/feature.h', |
167 'common/extensions/features/feature_provider.h', | 171 'common/extensions/features/feature_provider.h', |
168 'common/extensions/features/manifest_feature.cc', | 172 'common/extensions/features/manifest_feature.cc', |
169 'common/extensions/features/manifest_feature.h', | 173 'common/extensions/features/manifest_feature.h', |
170 'common/extensions/features/permission_feature.cc', | 174 'common/extensions/features/permission_feature.cc', |
171 'common/extensions/features/permission_feature.h', | 175 'common/extensions/features/permission_feature.h', |
172 'common/extensions/features/simple_feature_provider.cc', | 176 'common/extensions/features/simple_feature.cc', |
173 'common/extensions/features/simple_feature_provider.h', | 177 'common/extensions/features/simple_feature.h', |
174 'common/extensions/file_browser_handler.cc', | 178 'common/extensions/file_browser_handler.cc', |
175 'common/extensions/file_browser_handler.h', | 179 'common/extensions/file_browser_handler.h', |
176 'common/extensions/manifest.cc', | 180 'common/extensions/manifest.cc', |
177 'common/extensions/manifest.h', | 181 'common/extensions/manifest.h', |
178 'common/extensions/manifest_handler.cc', | 182 'common/extensions/manifest_handler.cc', |
179 'common/extensions/manifest_handler.h', | 183 'common/extensions/manifest_handler.h', |
180 'common/extensions/matcher/regex_set_matcher.cc', | 184 'common/extensions/matcher/regex_set_matcher.cc', |
181 'common/extensions/matcher/regex_set_matcher.h', | 185 'common/extensions/matcher/regex_set_matcher.h', |
182 'common/extensions/matcher/string_pattern.cc', | 186 'common/extensions/matcher/string_pattern.cc', |
183 'common/extensions/matcher/string_pattern.h', | 187 'common/extensions/matcher/string_pattern.h', |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 'common/metrics/proto/user_action_event.proto', | 629 'common/metrics/proto/user_action_event.proto', |
626 ], | 630 ], |
627 'variables': { | 631 'variables': { |
628 'proto_in_dir': 'common/metrics/proto', | 632 'proto_in_dir': 'common/metrics/proto', |
629 'proto_out_dir': 'chrome/common/metrics/proto', | 633 'proto_out_dir': 'chrome/common/metrics/proto', |
630 }, | 634 }, |
631 'includes': [ '../build/protoc.gypi' ], | 635 'includes': [ '../build/protoc.gypi' ], |
632 }, | 636 }, |
633 ], | 637 ], |
634 } | 638 } |
OLD | NEW |