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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
533 'msvs_disabled_warnings': [ 4267, ], | 533 'msvs_disabled_warnings': [ 4267, ], |
534 }, | 534 }, |
535 { | 535 { |
536 'target_name': 'extensions_renderer', | 536 'target_name': 'extensions_renderer', |
537 'type': 'static_library', | 537 'type': 'static_library', |
538 'dependencies': [ | 538 'dependencies': [ |
539 'extensions_resources.gyp:extensions_resources', | 539 'extensions_resources.gyp:extensions_resources', |
540 '../chrome/chrome_resources.gyp:chrome_resources', | 540 '../chrome/chrome_resources.gyp:chrome_resources', |
541 '../content/content_resources.gyp:content_resources', | 541 '../content/content_resources.gyp:content_resources', |
542 '../gin/gin.gyp:gin', | 542 '../gin/gin.gyp:gin', |
543 '../mojo/mojo.gyp:mojo_js_bindings', | 543 '../mojo/mojo_base.gyp:mojo_js_bindings', |
544 '../third_party/WebKit/public/blink.gyp:blink', | 544 '../third_party/WebKit/public/blink.gyp:blink', |
545 ], | 545 ], |
546 'include_dirs': [ | 546 'include_dirs': [ |
547 '..', | 547 '..', |
548 ], | 548 ], |
549 'sources': [ | 549 'sources': [ |
550 'renderer/activity_log_converter_strategy.cc', | 550 'renderer/activity_log_converter_strategy.cc', |
551 'renderer/activity_log_converter_strategy.h', | 551 'renderer/activity_log_converter_strategy.h', |
552 'renderer/api_activity_logger.cc', | 552 'renderer/api_activity_logger.cc', |
553 'renderer/api_activity_logger.h', | 553 'renderer/api_activity_logger.h', |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 # unit_tests target. They should be moved here, which may require some | 788 # unit_tests target. They should be moved here, which may require some |
789 # refactoring (ExtensionsBrowserClient, TestingProfile, etc.). | 789 # refactoring (ExtensionsBrowserClient, TestingProfile, etc.). |
790 # http://crbug.com/348066 | 790 # http://crbug.com/348066 |
791 'target_name': 'extensions_unittests', | 791 'target_name': 'extensions_unittests', |
792 'type': 'executable', | 792 'type': 'executable', |
793 'dependencies': [ | 793 'dependencies': [ |
794 '../base/base.gyp:base', | 794 '../base/base.gyp:base', |
795 '../base/base.gyp:test_support_base', | 795 '../base/base.gyp:test_support_base', |
796 '../content/content_shell_and_tests.gyp:test_support_content', | 796 '../content/content_shell_and_tests.gyp:test_support_content', |
797 '../device/serial/serial.gyp:device_serial', | 797 '../device/serial/serial.gyp:device_serial', |
798 '../mojo/mojo.gyp:mojo_environment_chromium', | 798 '../mojo/mojo_base.gyp:mojo_environment_chromium', |
799 '../mojo/mojo.gyp:mojo_cpp_bindings', | 799 '../mojo/mojo_base.gyp:mojo_cpp_bindings', |
800 '../mojo/mojo.gyp:mojo_js_bindings_lib', | 800 '../mojo/mojo_base.gyp:mojo_js_bindings_lib', |
801 '../mojo/mojo.gyp:mojo_system_impl', | 801 '../mojo/mojo_base.gyp:mojo_system_impl', |
802 '../testing/gmock.gyp:gmock', | 802 '../testing/gmock.gyp:gmock', |
803 '../testing/gtest.gyp:gtest', | 803 '../testing/gtest.gyp:gtest', |
804 'extensions_common', | 804 'extensions_common', |
805 'extensions_renderer', | 805 'extensions_renderer', |
806 'extensions_resources.gyp:extensions_resources', | 806 'extensions_resources.gyp:extensions_resources', |
807 'extensions_shell_and_test_pak', | 807 'extensions_shell_and_test_pak', |
808 'extensions_strings.gyp:extensions_strings', | 808 'extensions_strings.gyp:extensions_strings', |
809 'extensions_test_support', | 809 'extensions_test_support', |
810 ], | 810 ], |
811 'sources': [ | 811 'sources': [ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 'type': 'static_library', | 852 'type': 'static_library', |
853 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], | 853 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], |
854 'variables': { | 854 'variables': { |
855 'proto_in_dir': 'browser/api/cast_channel', | 855 'proto_in_dir': 'browser/api/cast_channel', |
856 'proto_out_dir': 'extensions/browser/api/cast_channel', | 856 'proto_out_dir': 'extensions/browser/api/cast_channel', |
857 }, | 857 }, |
858 'includes': [ '../build/protoc.gypi' ] | 858 'includes': [ '../build/protoc.gypi' ] |
859 }, | 859 }, |
860 ] | 860 ] |
861 } | 861 } |
OLD | NEW |