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

Side by Side Diff: extensions/extensions.gyp

Issue 434493002: OAuth2 support for Webstore downloads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 'type': 'static_library', 239 'type': 'static_library',
240 'dependencies': [ 240 'dependencies': [
241 '../base/base.gyp:base', 241 '../base/base.gyp:base',
242 '../base/base.gyp:base_prefs', 242 '../base/base.gyp:base_prefs',
243 '../components/components.gyp:keyed_service_content', 243 '../components/components.gyp:keyed_service_content',
244 '../components/components.gyp:keyed_service_core', 244 '../components/components.gyp:keyed_service_core',
245 '../components/components.gyp:pref_registry', 245 '../components/components.gyp:pref_registry',
246 '../components/components.gyp:usb_service', 246 '../components/components.gyp:usb_service',
247 '../content/content.gyp:content_browser', 247 '../content/content.gyp:content_browser',
248 '../device/serial/serial.gyp:device_serial', 248 '../device/serial/serial.gyp:device_serial',
249 '../google_apis/google_apis.gyp:google_apis',
249 '../skia/skia.gyp:skia', 250 '../skia/skia.gyp:skia',
250 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 251 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
251 'cast_channel_proto', 252 'cast_channel_proto',
252 'common/api/api.gyp:extensions_api', 253 'common/api/api.gyp:extensions_api',
253 'extensions_common', 254 'extensions_common',
254 'extensions_strings.gyp:extensions_strings', 255 'extensions_strings.gyp:extensions_strings',
255 ], 256 ],
256 'include_dirs': [ 257 'include_dirs': [
257 '..', 258 '..',
258 '<(INTERMEDIATE_DIR)', 259 '<(INTERMEDIATE_DIR)',
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 'browser/value_store/value_store_change.cc', 482 'browser/value_store/value_store_change.cc',
482 'browser/value_store/value_store_change.h', 483 'browser/value_store/value_store_change.h',
483 'browser/value_store/value_store_frontend.cc', 484 'browser/value_store/value_store_frontend.cc',
484 'browser/value_store/value_store_frontend.h', 485 'browser/value_store/value_store_frontend.h',
485 'browser/value_store/value_store_util.cc', 486 'browser/value_store/value_store_util.cc',
486 'browser/value_store/value_store_util.h', 487 'browser/value_store/value_store_util.h',
487 'browser/verified_contents.cc', 488 'browser/verified_contents.cc',
488 'browser/verified_contents.h', 489 'browser/verified_contents.h',
489 'browser/view_type_utils.cc', 490 'browser/view_type_utils.cc',
490 'browser/view_type_utils.h', 491 'browser/view_type_utils.h',
492 'browser/webstore_oauth2_token_provider.cc',
493 'browser/webstore_oauth2_token_provider.h',
491 ], 494 ],
492 'conditions': [ 495 'conditions': [
493 ['enable_extensions==0', { 496 ['enable_extensions==0', {
494 # Exclude all API implementations and the ExtensionsApiClient 497 # Exclude all API implementations and the ExtensionsApiClient
495 # interface. Moving an API from src/chrome to src/extensions implies 498 # interface. Moving an API from src/chrome to src/extensions implies
496 # it can be cleanly disabled with enable_extensions==0. 499 # it can be cleanly disabled with enable_extensions==0.
497 # TODO: Eventually the entire extensions module should not be built 500 # TODO: Eventually the entire extensions module should not be built
498 # when enable_extensions==0. 501 # when enable_extensions==0.
499 'sources/': [ 502 'sources/': [
500 ['exclude', '^browser/api/'], 503 ['exclude', '^browser/api/'],
501 ], 504 ],
502 'sources!': [ 505 'sources!': [
503 'browser/browser_context_keyed_service_factories.cc', 506 'browser/browser_context_keyed_service_factories.cc',
504 'browser/browser_context_keyed_service_factories.h', 507 'browser/browser_context_keyed_service_factories.h',
508 'browser/webstore_oauth2_token_provider.cc',
509 'browser/webstore_oauth2_token_provider.h',
505 ], 510 ],
506 'dependencies!': [ 511 'dependencies!': [
507 '../components/components.gyp:usb_service', 512 '../components/components.gyp:usb_service',
508 '../device/serial/serial.gyp:device_serial', 513 '../device/serial/serial.gyp:device_serial',
514 '../google_apis/google_apis.gyp:google_apis',
509 ], 515 ],
510 }], 516 }],
511 ['use_openssl==1', { 517 ['use_openssl==1', {
512 'sources': [ 518 'sources': [
513 'browser/api/cast_channel/cast_auth_util_openssl.cc', 519 'browser/api/cast_channel/cast_auth_util_openssl.cc',
514 ], 520 ],
515 }, { 521 }, {
516 'sources': [ 522 'sources': [
517 # cast_auth_util_nss.cc uses NSS functions. 523 # cast_auth_util_nss.cc uses NSS functions.
518 'browser/api/cast_channel/cast_auth_util_nss.cc', 524 'browser/api/cast_channel/cast_auth_util_nss.cc',
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 'type': 'static_library', 894 'type': 'static_library',
889 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], 895 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ],
890 'variables': { 896 'variables': {
891 'proto_in_dir': 'browser/api/cast_channel', 897 'proto_in_dir': 'browser/api/cast_channel',
892 'proto_out_dir': 'extensions/browser/api/cast_channel', 898 'proto_out_dir': 'extensions/browser/api/cast_channel',
893 }, 899 },
894 'includes': [ '../build/protoc.gypi' ] 900 'includes': [ '../build/protoc.gypi' ]
895 }, 901 },
896 ] 902 ]
897 } 903 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698