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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 'common/extensions/api/extension_api.h', | 139 'common/extensions/api/extension_api.h', |
140 'common/extensions/api/extension_api_stub.cc', | 140 'common/extensions/api/extension_api_stub.cc', |
141 'common/extensions/api/input_ime/input_components_handler.cc', | 141 'common/extensions/api/input_ime/input_components_handler.cc', |
142 'common/extensions/api/input_ime/input_components_handler.h', | 142 'common/extensions/api/input_ime/input_components_handler.h', |
143 'common/extensions/api/file_handlers/file_handlers_parser.cc', | 143 'common/extensions/api/file_handlers/file_handlers_parser.cc', |
144 'common/extensions/api/file_handlers/file_handlers_parser.h', | 144 'common/extensions/api/file_handlers/file_handlers_parser.h', |
145 'common/extensions/api/omnibox/omnibox_handler.cc', | 145 'common/extensions/api/omnibox/omnibox_handler.cc', |
146 'common/extensions/api/omnibox/omnibox_handler.h', | 146 'common/extensions/api/omnibox/omnibox_handler.h', |
147 'common/extensions/api/speech/tts_engine_manifest_handler.cc', | 147 'common/extensions/api/speech/tts_engine_manifest_handler.cc', |
148 'common/extensions/api/speech/tts_engine_manifest_handler.h', | 148 'common/extensions/api/speech/tts_engine_manifest_handler.h', |
| 149 'common/extensions/api/themes/theme_handler.cc', |
| 150 'common/extensions/api/themes/theme_handler.h', |
149 'common/extensions/command.cc', | 151 'common/extensions/command.cc', |
150 'common/extensions/command.h', | 152 'common/extensions/command.h', |
151 'common/extensions/csp_validator.cc', | 153 'common/extensions/csp_validator.cc', |
152 'common/extensions/csp_validator.h', | 154 'common/extensions/csp_validator.h', |
153 'common/extensions/draggable_region.cc', | 155 'common/extensions/draggable_region.cc', |
154 'common/extensions/draggable_region.h', | 156 'common/extensions/draggable_region.h', |
155 'common/extensions/event_filter.cc', | 157 'common/extensions/event_filter.cc', |
156 'common/extensions/event_filter.h', | 158 'common/extensions/event_filter.h', |
157 'common/extensions/event_filtering_info.cc', | 159 'common/extensions/event_filtering_info.cc', |
158 'common/extensions/event_filtering_info.h', | 160 'common/extensions/event_filtering_info.h', |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 '../device/device.gyp:device_usb', | 473 '../device/device.gyp:device_usb', |
472 ], | 474 ], |
473 }, { # enable_extensions == 0 | 475 }, { # enable_extensions == 0 |
474 'sources/': [ | 476 'sources/': [ |
475 ['exclude', '^common/extensions/api/'], | 477 ['exclude', '^common/extensions/api/'], |
476 ['include', 'common/extensions/api/extension_api_stub.cc'], | 478 ['include', 'common/extensions/api/extension_api_stub.cc'], |
477 ['include', 'common/extensions/api/extension_action/action_info.cc']
, | 479 ['include', 'common/extensions/api/extension_action/action_info.cc']
, |
478 ['include', 'common/extensions/api/extension_action/action_info.h'], | 480 ['include', 'common/extensions/api/extension_action/action_info.h'], |
479 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.cc'], | 481 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.cc'], |
480 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.h'], | 482 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.h'], |
| 483 ['include', 'common/extensions/api/themes/theme_handler.cc'], |
| 484 ['include', 'common/extensions/api/themes/theme_handler.h'], |
481 ], | 485 ], |
482 }], | 486 }], |
483 ['remoting==1', { | 487 ['remoting==1', { |
484 'dependencies': [ | 488 'dependencies': [ |
485 '../remoting/remoting.gyp:remoting_client_plugin', | 489 '../remoting/remoting.gyp:remoting_client_plugin', |
486 ], | 490 ], |
487 }], | 491 }], |
488 ['enable_automation==0', { | 492 ['enable_automation==0', { |
489 'sources/': [ | 493 'sources/': [ |
490 ['exclude', '^common/automation_'] | 494 ['exclude', '^common/automation_'] |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 'common/metrics/proto/user_action_event.proto', | 677 'common/metrics/proto/user_action_event.proto', |
674 ], | 678 ], |
675 'variables': { | 679 'variables': { |
676 'proto_in_dir': 'common/metrics/proto', | 680 'proto_in_dir': 'common/metrics/proto', |
677 'proto_out_dir': 'chrome/common/metrics/proto', | 681 'proto_out_dir': 'chrome/common/metrics/proto', |
678 }, | 682 }, |
679 'includes': [ '../build/protoc.gypi' ], | 683 'includes': [ '../build/protoc.gypi' ], |
680 }, | 684 }, |
681 ], | 685 ], |
682 } | 686 } |
OLD | NEW |