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

Side by Side Diff: extensions/extensions.gyp

Issue 359413004: Add support for using AMD modules from extensions modules. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: extensions_renderer should depend on gin Created 6 years, 5 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/test/base/module_system_test.cc ('k') | extensions/renderer/DEPS » ('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 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 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 ], 469 ],
470 # Disable c4267 warnings until we fix size_t to int truncations. 470 # Disable c4267 warnings until we fix size_t to int truncations.
471 'msvs_disabled_warnings': [ 4267, ], 471 'msvs_disabled_warnings': [ 4267, ],
472 }, 472 },
473 { 473 {
474 'target_name': 'extensions_renderer', 474 'target_name': 'extensions_renderer',
475 'type': 'static_library', 475 'type': 'static_library',
476 'dependencies': [ 476 'dependencies': [
477 'extensions_resources.gyp:extensions_resources', 477 'extensions_resources.gyp:extensions_resources',
478 '../chrome/chrome_resources.gyp:chrome_resources', 478 '../chrome/chrome_resources.gyp:chrome_resources',
479 '../gin/gin.gyp:gin',
479 '../third_party/WebKit/public/blink.gyp:blink', 480 '../third_party/WebKit/public/blink.gyp:blink',
480 ], 481 ],
481 'include_dirs': [ 482 'include_dirs': [
482 '..', 483 '..',
483 ], 484 ],
484 'sources': [ 485 'sources': [
485 'renderer/activity_log_converter_strategy.cc', 486 'renderer/activity_log_converter_strategy.cc',
486 'renderer/activity_log_converter_strategy.h', 487 'renderer/activity_log_converter_strategy.h',
487 'renderer/api_activity_logger.cc', 488 'renderer/api_activity_logger.cc',
488 'renderer/api_activity_logger.h', 489 'renderer/api_activity_logger.h',
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 'test/test_extensions_client.cc', 692 'test/test_extensions_client.cc',
692 'test/test_extensions_client.h', 693 'test/test_extensions_client.h',
693 'test/test_permission_message_provider.cc', 694 'test/test_permission_message_provider.cc',
694 'test/test_permission_message_provider.h', 695 'test/test_permission_message_provider.h',
695 'test/test_permissions_provider.cc', 696 'test/test_permissions_provider.cc',
696 'test/test_permissions_provider.h', 697 'test/test_permissions_provider.h',
697 ], 698 ],
698 }, 699 },
699 ] 700 ]
700 } 701 }
OLDNEW
« no previous file with comments | « chrome/test/base/module_system_test.cc ('k') | extensions/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698