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

Side by Side Diff: extensions/extensions.gyp

Issue 544753003: Move BluetoothEventRouterTest to extensions_unittests suite (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 919 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 # refactoring (ExtensionsBrowserClient, TestingProfile, etc.). 930 # refactoring (ExtensionsBrowserClient, TestingProfile, etc.).
931 # http://crbug.com/348066 931 # http://crbug.com/348066
932 'target_name': 'extensions_unittests', 932 'target_name': 'extensions_unittests',
933 'type': 'executable', 933 'type': 'executable',
934 'dependencies': [ 934 'dependencies': [
935 '../base/base.gyp:base', 935 '../base/base.gyp:base',
936 '../base/base.gyp:base_prefs_test_support', 936 '../base/base.gyp:base_prefs_test_support',
937 '../base/base.gyp:test_support_base', 937 '../base/base.gyp:test_support_base',
938 '../components/components.gyp:keyed_service_content', 938 '../components/components.gyp:keyed_service_content',
939 '../content/content_shell_and_tests.gyp:test_support_content', 939 '../content/content_shell_and_tests.gyp:test_support_content',
940 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks',
940 '../device/serial/serial.gyp:device_serial', 941 '../device/serial/serial.gyp:device_serial',
941 '../device/serial/serial.gyp:device_serial_test_util', 942 '../device/serial/serial.gyp:device_serial_test_util',
942 '../mojo/mojo_base.gyp:mojo_environment_chromium', 943 '../mojo/mojo_base.gyp:mojo_environment_chromium',
943 '../mojo/mojo_base.gyp:mojo_cpp_bindings', 944 '../mojo/mojo_base.gyp:mojo_cpp_bindings',
944 '../mojo/mojo_base.gyp:mojo_js_bindings_lib', 945 '../mojo/mojo_base.gyp:mojo_js_bindings_lib',
945 '../mojo/mojo_base.gyp:mojo_system_impl', 946 '../mojo/mojo_base.gyp:mojo_system_impl',
946 '../testing/gmock.gyp:gmock', 947 '../testing/gmock.gyp:gmock',
947 '../testing/gtest.gyp:gtest', 948 '../testing/gtest.gyp:gtest',
948 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 949 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
949 'extensions_common', 950 'extensions_common',
950 'extensions_renderer', 951 'extensions_renderer',
951 'extensions_resources.gyp:extensions_resources', 952 'extensions_resources.gyp:extensions_resources',
952 'extensions_shell_and_test_pak', 953 'extensions_shell_and_test_pak',
953 'extensions_strings.gyp:extensions_strings', 954 'extensions_strings.gyp:extensions_strings',
954 'extensions_test_support', 955 'extensions_test_support',
955 ], 956 ],
956 # Needed for third_party libraries like leveldb. 957 # Needed for third_party libraries like leveldb.
957 'include_dirs': [ 958 'include_dirs': [
958 '..', 959 '..',
959 ], 960 ],
960 'sources': [ 961 'sources': [
961 'browser/admin_policy_unittest.cc', 962 'browser/admin_policy_unittest.cc',
962 'browser/api/api_resource_manager_unittest.cc', 963 'browser/api/api_resource_manager_unittest.cc',
964 'browser/api/bluetooth/bluetooth_event_router_unittest.cc',
963 'browser/api/declarative/deduping_factory_unittest.cc', 965 'browser/api/declarative/deduping_factory_unittest.cc',
964 'browser/api/sockets_tcp/sockets_tcp_api_unittest.cc', 966 'browser/api/sockets_tcp/sockets_tcp_api_unittest.cc',
965 'browser/api/storage/settings_quota_unittest.cc', 967 'browser/api/storage/settings_quota_unittest.cc',
966 'browser/api/storage/storage_api_unittest.cc', 968 'browser/api/storage/storage_api_unittest.cc',
967 'browser/api/storage/storage_frontend_unittest.cc', 969 'browser/api/storage/storage_frontend_unittest.cc',
968 'browser/computed_hashes_unittest.cc', 970 'browser/computed_hashes_unittest.cc',
969 'browser/content_hash_tree_unittest.cc', 971 'browser/content_hash_tree_unittest.cc',
970 'browser/event_listener_map_unittest.cc', 972 'browser/event_listener_map_unittest.cc',
971 'browser/event_router_unittest.cc', 973 'browser/event_router_unittest.cc',
972 'browser/api_unittest.cc', 974 'browser/api_unittest.cc',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
1043 'browser/api/cast_channel/logging.proto' 1045 'browser/api/cast_channel/logging.proto'
1044 ], 1046 ],
1045 'variables': { 1047 'variables': {
1046 'proto_in_dir': 'browser/api/cast_channel', 1048 'proto_in_dir': 'browser/api/cast_channel',
1047 'proto_out_dir': 'extensions/browser/api/cast_channel', 1049 'proto_out_dir': 'extensions/browser/api/cast_channel',
1048 }, 1050 },
1049 'includes': [ '../build/protoc.gypi' ] 1051 'includes': [ '../build/protoc.gypi' ]
1050 }, 1052 },
1051 ] 1053 ]
1052 } 1054 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698