OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//chrome/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
988 "//ppapi/native_client:irt", | 988 "//ppapi/native_client:irt", |
989 "//ppapi:ppapi_nacl_tests_all", | 989 "//ppapi:ppapi_nacl_tests_all", |
990 | 990 |
991 # "../ppapi/ppapi_nacl.gyp:ppapi_nacl_tests", # TODO(GYP) bug 512901 | 991 # "../ppapi/ppapi_nacl.gyp:ppapi_nacl_tests", # TODO(GYP) bug 512901 |
992 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_bac
kground_keepalive", # TODO(GYP) bug 512900 | 992 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_bac
kground_keepalive", # TODO(GYP) bug 512900 |
993 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_med
ia_galleries", # TODO(GYP) bug 512900 | 993 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_med
ia_galleries", # TODO(GYP) bug 512900 |
994 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_pac
kaged_app", # TODO(GYP) bug 512900 | 994 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_pac
kaged_app", # TODO(GYP) bug 512900 |
995 ] | 995 ] |
996 if (is_chromeos) { | 996 if (is_chromeos) { |
997 sources += [ "//third_party/liblouis/nacl_wrapper/liblouis_wrapper_bro
wsertest.cc" ] | 997 sources += [ "//third_party/liblouis/nacl_wrapper/liblouis_wrapper_bro
wsertest.cc" ] |
998 deps += [ | 998 deps += [ "//chrome/browser/chromeos" ] |
999 "//chrome/browser/chromeos", | 999 data_deps += [ "//third_party/liblouis:liblouis_test_data" ] |
1000 #'../third_party/liblouis/liblouis_nacl.gyp:liblouis_test_data', TO
DO(GYP) bug 512906 | |
1001 ] | |
1002 } | 1000 } |
1003 } | 1001 } |
1004 if (is_win || is_linux) { | 1002 if (is_win || is_linux) { |
1005 sources += [ "../browser/nacl_host/test/nacl_gdb_browsertest.cc" ] | 1003 sources += [ "../browser/nacl_host/test/nacl_gdb_browsertest.cc" ] |
1006 deps += [ "//chrome/browser/nacl_host/test:mock_nacl_gdb" ] | 1004 deps += [ "//chrome/browser/nacl_host/test:mock_nacl_gdb" ] |
1007 } | 1005 } |
1008 if (is_win) { | 1006 if (is_win) { |
1009 # TODO(halyavin) NaCl on Windows can't open debug stub socket in | 1007 # TODO(halyavin) NaCl on Windows can't open debug stub socket in |
1010 # browser process as needed by this test. See http://crbug.com/157312. | 1008 # browser process as needed by this test. See http://crbug.com/157312. |
1011 sources -= [ "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc" ] | 1009 sources -= [ "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc" ] |
(...skipping 1221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2233 if (is_android) { | 2231 if (is_android) { |
2234 android_library("unit_tests_java") { | 2232 android_library("unit_tests_java") { |
2235 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2233 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
2236 deps = [ | 2234 deps = [ |
2237 "//base:base_java", | 2235 "//base:base_java", |
2238 "//chrome/android:chrome_java", | 2236 "//chrome/android:chrome_java", |
2239 "//content/public/android:content_java", | 2237 "//content/public/android:content_java", |
2240 ] | 2238 ] |
2241 } | 2239 } |
2242 } | 2240 } |
OLD | NEW |