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

Side by Side Diff: chrome/test/BUILD.gn

Issue 1462243002: GN: Support building liblouis library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 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 979 matching lines...) Expand 10 before | Expand all | Expand 10 after
990 "//ppapi/native_client:irt", 990 "//ppapi/native_client:irt",
991 "//ppapi:ppapi_nacl_tests_all", 991 "//ppapi:ppapi_nacl_tests_all",
992 992
993 # "../ppapi/ppapi_nacl.gyp:ppapi_nacl_tests", # TODO(GYP) bug 512901 993 # "../ppapi/ppapi_nacl.gyp:ppapi_nacl_tests", # TODO(GYP) bug 512901
994 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_bac kground_keepalive", # TODO(GYP) bug 512900 994 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_bac kground_keepalive", # TODO(GYP) bug 512900
995 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_med ia_galleries", # TODO(GYP) bug 512900 995 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_med ia_galleries", # TODO(GYP) bug 512900
996 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_pac kaged_app", # TODO(GYP) bug 512900 996 # "../ppapi/tests/extensions/extensions.gyp:ppapi_tests_extensions_pac kaged_app", # TODO(GYP) bug 512900
997 ] 997 ]
998 if (is_chromeos) { 998 if (is_chromeos) {
999 sources += [ "//third_party/liblouis/nacl_wrapper/liblouis_wrapper_bro wsertest.cc" ] 999 sources += [ "//third_party/liblouis/nacl_wrapper/liblouis_wrapper_bro wsertest.cc" ]
1000 deps += [ 1000 deps += [ "//chrome/browser/chromeos" ]
1001 "//chrome/browser/chromeos", 1001 data_deps += [ "//third_party/liblouis:liblouis_test_data" ]
1002 #'../third_party/liblouis/liblouis_nacl.gyp:liblouis_test_data', TO DO(GYP) bug 512906
1003 ]
1004 } 1002 }
1005 } 1003 }
1006 if (is_win || is_linux) { 1004 if (is_win || is_linux) {
1007 sources += [ "../browser/nacl_host/test/nacl_gdb_browsertest.cc" ] 1005 sources += [ "../browser/nacl_host/test/nacl_gdb_browsertest.cc" ]
1008 deps += [ "//chrome/browser/nacl_host/test:mock_nacl_gdb" ] 1006 deps += [ "//chrome/browser/nacl_host/test:mock_nacl_gdb" ]
1009 } 1007 }
1010 if (is_win) { 1008 if (is_win) {
1011 # TODO(halyavin) NaCl on Windows can't open debug stub socket in 1009 # TODO(halyavin) NaCl on Windows can't open debug stub socket in
1012 # browser process as needed by this test. See http://crbug.com/157312. 1010 # browser process as needed by this test. See http://crbug.com/157312.
1013 sources -= [ "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc" ] 1011 sources -= [ "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc" ]
(...skipping 1221 matching lines...) Expand 10 before | Expand all | Expand 10 after
2235 if (is_android) { 2233 if (is_android) {
2236 android_library("unit_tests_java") { 2234 android_library("unit_tests_java") {
2237 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" 2235 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src"
2238 deps = [ 2236 deps = [
2239 "//base:base_java", 2237 "//base:base_java",
2240 "//chrome/android:chrome_java", 2238 "//chrome/android:chrome_java",
2241 "//content/public/android:content_java", 2239 "//content/public/android:content_java",
2242 ] 2240 ]
2243 } 2241 }
2244 } 2242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698