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

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

Issue 2255673003: [wasm] Support wasm module structured cloning. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Setup isolate Created 4 years, 4 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 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 908 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 919
920 deps = [ 920 deps = [
921 ":browser_tests_runner", 921 ":browser_tests_runner",
922 ":test_support", 922 ":test_support",
923 "//base", 923 "//base",
924 "//components/sync:test_support_sync_api", 924 "//components/sync:test_support_sync_api",
925 ] 925 ]
926 926
927 data_deps = [] 927 data_deps = []
928 928
929 data = [] 929 data = [
930 "//v8/test/mjsunit/wasm/incrementer.wasm",
931 ]
930 932
931 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 933 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
932 934
933 if (is_win) { 935 if (is_win) {
934 data += [ "$root_out_dir/chrome_200_percent.pak" ] 936 data += [ "$root_out_dir/chrome_200_percent.pak" ]
935 } 937 }
936 if (is_chromeos) { 938 if (is_chromeos) {
937 data += [ 939 data += [
938 # TODO(GYP): figure out which of these things are 940 # TODO(GYP): figure out which of these things are
939 # actually needed and also which should be pulled in via 941 # actually needed and also which should be pulled in via
(...skipping 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after
2487 if (is_android) { 2489 if (is_android) {
2488 android_library("unit_tests_java") { 2490 android_library("unit_tests_java") {
2489 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 2491 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
2490 deps = [ 2492 deps = [
2491 "//base:base_java", 2493 "//base:base_java",
2492 "//chrome/android:chrome_java", 2494 "//chrome/android:chrome_java",
2493 "//content/public/android:content_java", 2495 "//content/public/android:content_java",
2494 ] 2496 ]
2495 } 2497 }
2496 } 2498 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698