Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: chrome/chrome_common.gypi

Issue 11882025: Move "oauth2" manifest key parsing out of Extension class. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/profiles/profile_dependency_manager.cc ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'common/extensions/api/extension_action/browser_action_handler.h', 135 'common/extensions/api/extension_action/browser_action_handler.h',
136 'common/extensions/api/extension_action/script_badge_handler.cc', 136 'common/extensions/api/extension_action/script_badge_handler.cc',
137 'common/extensions/api/extension_action/script_badge_handler.h', 137 'common/extensions/api/extension_action/script_badge_handler.h',
138 'common/extensions/api/extension_action/action_info.cc', 138 'common/extensions/api/extension_action/action_info.cc',
139 'common/extensions/api/extension_action/action_info.h', 139 'common/extensions/api/extension_action/action_info.h',
140 'common/extensions/api/extension_api.cc', 140 'common/extensions/api/extension_api.cc',
141 'common/extensions/api/extension_api.h', 141 'common/extensions/api/extension_api.h',
142 'common/extensions/api/extension_api_stub.cc', 142 'common/extensions/api/extension_api_stub.cc',
143 'common/extensions/api/i18n/default_locale_handler.cc', 143 'common/extensions/api/i18n/default_locale_handler.cc',
144 'common/extensions/api/i18n/default_locale_handler.h', 144 'common/extensions/api/i18n/default_locale_handler.h',
145 'common/extensions/api/identity/oauth2_manifest_handler.cc',
146 'common/extensions/api/identity/oauth2_manifest_handler.h',
145 'common/extensions/api/input_ime/input_components_handler.cc', 147 'common/extensions/api/input_ime/input_components_handler.cc',
146 'common/extensions/api/input_ime/input_components_handler.h', 148 'common/extensions/api/input_ime/input_components_handler.h',
147 'common/extensions/api/file_handlers/file_handlers_parser.cc', 149 'common/extensions/api/file_handlers/file_handlers_parser.cc',
148 'common/extensions/api/file_handlers/file_handlers_parser.h', 150 'common/extensions/api/file_handlers/file_handlers_parser.h',
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/command.cc', 155 'common/extensions/command.cc',
154 'common/extensions/command.h', 156 'common/extensions/command.h',
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 }, { # enable_extensions == 0 479 }, { # enable_extensions == 0
478 'sources/': [ 480 'sources/': [
479 ['exclude', '^common/extensions/api/'], 481 ['exclude', '^common/extensions/api/'],
480 ['include', 'common/extensions/api/extension_api_stub.cc'], 482 ['include', 'common/extensions/api/extension_api_stub.cc'],
481 ['include', 'common/extensions/api/extension_action/action_info.cc'] , 483 ['include', 'common/extensions/api/extension_action/action_info.cc'] ,
482 ['include', 'common/extensions/api/extension_action/action_info.h'], 484 ['include', 'common/extensions/api/extension_action/action_info.h'],
483 ['include', 'common/extensions/api/extension_action/browser_action_h andler.cc'], 485 ['include', 'common/extensions/api/extension_action/browser_action_h andler.cc'],
484 ['include', 'common/extensions/api/extension_action/browser_action_h andler.h'], 486 ['include', 'common/extensions/api/extension_action/browser_action_h andler.h'],
485 ['include', 'common/extensions/api/i18n/default_locale_handler.cc'], 487 ['include', 'common/extensions/api/i18n/default_locale_handler.cc'],
486 ['include', 'common/extensions/api/i18n/default_locale_handler.h'], 488 ['include', 'common/extensions/api/i18n/default_locale_handler.h'],
489 ['include', 'common/extensions/api/identity/oauth2_manifest_handler. cc'],
490 ['include', 'common/extensions/api/identity/oauth2_manifest_handler. h'],
487 ], 491 ],
488 }], 492 }],
489 ['remoting==1', { 493 ['remoting==1', {
490 'dependencies': [ 494 'dependencies': [
491 '../remoting/remoting.gyp:remoting_client_plugin', 495 '../remoting/remoting.gyp:remoting_client_plugin',
492 ], 496 ],
493 }], 497 }],
494 ['enable_automation==0', { 498 ['enable_automation==0', {
495 'sources/': [ 499 'sources/': [
496 ['exclude', '^common/automation_'] 500 ['exclude', '^common/automation_']
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 'common/metrics/proto/user_action_event.proto', 683 'common/metrics/proto/user_action_event.proto',
680 ], 684 ],
681 'variables': { 685 'variables': {
682 'proto_in_dir': 'common/metrics/proto', 686 'proto_in_dir': 'common/metrics/proto',
683 'proto_out_dir': 'chrome/common/metrics/proto', 687 'proto_out_dir': 'chrome/common/metrics/proto',
684 }, 688 },
685 'includes': [ '../build/protoc.gypi' ], 689 'includes': [ '../build/protoc.gypi' ],
686 }, 690 },
687 ], 691 ],
688 } 692 }
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_dependency_manager.cc ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698