OLD | NEW |
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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
592 # Disable c4267 warnings until we fix size_t to int truncations. | 592 # Disable c4267 warnings until we fix size_t to int truncations. |
593 'msvs_disabled_warnings': [ 4267, ], | 593 'msvs_disabled_warnings': [ 4267, ], |
594 }, | 594 }, |
595 { | 595 { |
596 # GN version: //extensions/renderer | 596 # GN version: //extensions/renderer |
597 'target_name': 'extensions_renderer', | 597 'target_name': 'extensions_renderer', |
598 'type': 'static_library', | 598 'type': 'static_library', |
599 'dependencies': [ | 599 'dependencies': [ |
600 'extensions_resources.gyp:extensions_resources', | 600 'extensions_resources.gyp:extensions_resources', |
601 '../chrome/chrome_resources.gyp:chrome_resources', | 601 '../chrome/chrome_resources.gyp:chrome_resources', |
602 '../content/content_resources.gyp:content_resources', | 602 '../content/content.gyp:content_resources', |
603 '../gin/gin.gyp:gin', | 603 '../gin/gin.gyp:gin', |
604 '../mojo/mojo_base.gyp:mojo_js_bindings', | 604 '../mojo/mojo_base.gyp:mojo_js_bindings', |
605 '../third_party/WebKit/public/blink.gyp:blink', | 605 '../third_party/WebKit/public/blink.gyp:blink', |
606 ], | 606 ], |
607 'include_dirs': [ | 607 'include_dirs': [ |
608 '..', | 608 '..', |
609 ], | 609 ], |
610 'sources': [ | 610 'sources': [ |
611 'renderer/activity_log_converter_strategy.cc', | 611 'renderer/activity_log_converter_strategy.cc', |
612 'renderer/activity_log_converter_strategy.h', | 612 'renderer/activity_log_converter_strategy.h', |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 # two). | 816 # two). |
817 'target_name': 'extensions_shell_and_test_pak', | 817 'target_name': 'extensions_shell_and_test_pak', |
818 'type': 'none', | 818 'type': 'none', |
819 'dependencies': [ | 819 'dependencies': [ |
820 # Need extension related resources in common_resources.pak and | 820 # Need extension related resources in common_resources.pak and |
821 # renderer_resources_100_percent.pak | 821 # renderer_resources_100_percent.pak |
822 '../chrome/chrome_resources.gyp:chrome_resources', | 822 '../chrome/chrome_resources.gyp:chrome_resources', |
823 # Need dev-tools related resources in shell_resources.pak and | 823 # Need dev-tools related resources in shell_resources.pak and |
824 # devtools_resources.pak. | 824 # devtools_resources.pak. |
825 '../content/browser/devtools/devtools_resources.gyp:devtools_resources', | 825 '../content/browser/devtools/devtools_resources.gyp:devtools_resources', |
826 '../content/content_resources.gyp:content_resources', | 826 '../content/content.gyp:content_resources', |
827 '../content/content_shell_and_tests.gyp:content_shell_resources', | 827 '../content/content_shell_and_tests.gyp:content_shell_resources', |
828 '../ui/resources/ui_resources.gyp:ui_resources', | 828 '../ui/resources/ui_resources.gyp:ui_resources', |
829 '../ui/strings/ui_strings.gyp:ui_strings', | 829 '../ui/strings/ui_strings.gyp:ui_strings', |
830 'extensions_resources.gyp:extensions_resources', | 830 'extensions_resources.gyp:extensions_resources', |
831 'extensions_strings.gyp:extensions_strings', | 831 'extensions_strings.gyp:extensions_strings', |
832 'shell/app_shell_resources.gyp:app_shell_resources', | 832 'shell/app_shell_resources.gyp:app_shell_resources', |
833 ], | 833 ], |
834 'actions': [ | 834 'actions': [ |
835 { | 835 { |
836 'action_name': 'repack_extensions_shell_and_test_pak', | 836 'action_name': 'repack_extensions_shell_and_test_pak', |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
970 'browser/api/cast_channel/logging.proto' | 970 'browser/api/cast_channel/logging.proto' |
971 ], | 971 ], |
972 'variables': { | 972 'variables': { |
973 'proto_in_dir': 'browser/api/cast_channel', | 973 'proto_in_dir': 'browser/api/cast_channel', |
974 'proto_out_dir': 'extensions/browser/api/cast_channel', | 974 'proto_out_dir': 'extensions/browser/api/cast_channel', |
975 }, | 975 }, |
976 'includes': [ '../build/protoc.gypi' ] | 976 'includes': [ '../build/protoc.gypi' ] |
977 }, | 977 }, |
978 ] | 978 ] |
979 } | 979 } |
OLD | NEW |