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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar', | 47 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar', |
48 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 48 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
49 '<(DEPTH)/third_party/zlib/zlib.gyp:minizip', | 49 '<(DEPTH)/third_party/zlib/zlib.gyp:minizip', |
50 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', | 50 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
51 '<(DEPTH)/ui/ui.gyp:ui_resources', | 51 '<(DEPTH)/ui/ui.gyp:ui_resources', |
52 '<(DEPTH)/webkit/support/webkit_support.gyp:user_agent', | 52 '<(DEPTH)/webkit/support/webkit_support.gyp:user_agent', |
53 ], | 53 ], |
54 'sources': [ | 54 'sources': [ |
55 '../extensions/common/constants.cc', | 55 '../extensions/common/constants.cc', |
56 '../extensions/common/constants.h', | 56 '../extensions/common/constants.h', |
| 57 '../extensions/common/draggable_region.cc', |
| 58 '../extensions/common/draggable_region.h', |
57 '../extensions/common/error_utils.cc', | 59 '../extensions/common/error_utils.cc', |
58 '../extensions/common/error_utils.h', | 60 '../extensions/common/error_utils.h', |
59 '../extensions/common/install_warning.h', | 61 '../extensions/common/install_warning.h', |
60 '../extensions/common/install_warning.cc', | 62 '../extensions/common/install_warning.cc', |
61 '../extensions/common/url_pattern.cc', | 63 '../extensions/common/url_pattern.cc', |
62 '../extensions/common/url_pattern.h', | 64 '../extensions/common/url_pattern.h', |
63 '../extensions/common/url_pattern_set.cc', | 65 '../extensions/common/url_pattern_set.cc', |
64 '../extensions/common/url_pattern_set.h', | 66 '../extensions/common/url_pattern_set.h', |
65 'common/all_messages.h', | 67 'common/all_messages.h', |
66 'common/attrition_experiments.h', | 68 'common/attrition_experiments.h', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 'common/extensions/api/omnibox/omnibox_handler.cc', | 151 'common/extensions/api/omnibox/omnibox_handler.cc', |
150 'common/extensions/api/omnibox/omnibox_handler.h', | 152 'common/extensions/api/omnibox/omnibox_handler.h', |
151 'common/extensions/api/speech/tts_engine_manifest_handler.cc', | 153 'common/extensions/api/speech/tts_engine_manifest_handler.cc', |
152 'common/extensions/api/speech/tts_engine_manifest_handler.h', | 154 'common/extensions/api/speech/tts_engine_manifest_handler.h', |
153 'common/extensions/api/themes/theme_handler.cc', | 155 'common/extensions/api/themes/theme_handler.cc', |
154 'common/extensions/api/themes/theme_handler.h', | 156 'common/extensions/api/themes/theme_handler.h', |
155 'common/extensions/command.cc', | 157 'common/extensions/command.cc', |
156 'common/extensions/command.h', | 158 'common/extensions/command.h', |
157 'common/extensions/csp_validator.cc', | 159 'common/extensions/csp_validator.cc', |
158 'common/extensions/csp_validator.h', | 160 'common/extensions/csp_validator.h', |
159 'common/extensions/draggable_region.cc', | |
160 'common/extensions/draggable_region.h', | |
161 'common/extensions/event_filter.cc', | 161 'common/extensions/event_filter.cc', |
162 'common/extensions/event_filter.h', | 162 'common/extensions/event_filter.h', |
163 'common/extensions/event_filtering_info.cc', | 163 'common/extensions/event_filtering_info.cc', |
164 'common/extensions/event_filtering_info.h', | 164 'common/extensions/event_filtering_info.h', |
165 'common/extensions/event_matcher.cc', | 165 'common/extensions/event_matcher.cc', |
166 'common/extensions/event_matcher.h', | 166 'common/extensions/event_matcher.h', |
167 'common/extensions/extension.cc', | 167 'common/extensions/extension.cc', |
168 'common/extensions/extension.h', | 168 'common/extensions/extension.h', |
169 'common/extensions/extension_constants.cc', | 169 'common/extensions/extension_constants.cc', |
170 'common/extensions/extension_constants.h', | 170 'common/extensions/extension_constants.h', |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 'common/metrics/proto/user_action_event.proto', | 683 'common/metrics/proto/user_action_event.proto', |
684 ], | 684 ], |
685 'variables': { | 685 'variables': { |
686 'proto_in_dir': 'common/metrics/proto', | 686 'proto_in_dir': 'common/metrics/proto', |
687 'proto_out_dir': 'chrome/common/metrics/proto', | 687 'proto_out_dir': 'chrome/common/metrics/proto', |
688 }, | 688 }, |
689 'includes': [ '../build/protoc.gypi' ], | 689 'includes': [ '../build/protoc.gypi' ], |
690 }, | 690 }, |
691 ], | 691 ], |
692 } | 692 } |
OLD | NEW |