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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 { | 791 { |
792 # TODO(tfarina): Many extension unit tests run as part of Chrome's | 792 # TODO(tfarina): Many extension unit tests run as part of Chrome's |
793 # unit_tests target. They should be moved here, which may require some | 793 # unit_tests target. They should be moved here, which may require some |
794 # refactoring (ExtensionsBrowserClient, TestingProfile, etc.). | 794 # refactoring (ExtensionsBrowserClient, TestingProfile, etc.). |
795 # http://crbug.com/348066 | 795 # http://crbug.com/348066 |
796 'target_name': 'extensions_unittests', | 796 'target_name': 'extensions_unittests', |
797 'type': 'executable', | 797 'type': 'executable', |
798 'dependencies': [ | 798 'dependencies': [ |
799 '../base/base.gyp:base', | 799 '../base/base.gyp:base', |
800 '../base/base.gyp:test_support_base', | 800 '../base/base.gyp:test_support_base', |
| 801 '../components/components.gyp:keyed_service_content', |
801 '../content/content_shell_and_tests.gyp:test_support_content', | 802 '../content/content_shell_and_tests.gyp:test_support_content', |
802 '../device/serial/serial.gyp:device_serial', | 803 '../device/serial/serial.gyp:device_serial', |
803 '../mojo/mojo_base.gyp:mojo_environment_chromium', | 804 '../mojo/mojo_base.gyp:mojo_environment_chromium', |
804 '../mojo/mojo_base.gyp:mojo_cpp_bindings', | 805 '../mojo/mojo_base.gyp:mojo_cpp_bindings', |
805 '../mojo/mojo_base.gyp:mojo_js_bindings_lib', | 806 '../mojo/mojo_base.gyp:mojo_js_bindings_lib', |
806 '../mojo/mojo_base.gyp:mojo_system_impl', | 807 '../mojo/mojo_base.gyp:mojo_system_impl', |
807 '../testing/gmock.gyp:gmock', | 808 '../testing/gmock.gyp:gmock', |
808 '../testing/gtest.gyp:gtest', | 809 '../testing/gtest.gyp:gtest', |
809 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 810 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
810 'extensions_common', | 811 'extensions_common', |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 'type': 'static_library', | 887 'type': 'static_library', |
887 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], | 888 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], |
888 'variables': { | 889 'variables': { |
889 'proto_in_dir': 'browser/api/cast_channel', | 890 'proto_in_dir': 'browser/api/cast_channel', |
890 'proto_out_dir': 'extensions/browser/api/cast_channel', | 891 'proto_out_dir': 'extensions/browser/api/cast_channel', |
891 }, | 892 }, |
892 'includes': [ '../build/protoc.gypi' ] | 893 'includes': [ '../build/protoc.gypi' ] |
893 }, | 894 }, |
894 ] | 895 ] |
895 } | 896 } |
OLD | NEW |