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

Side by Side Diff: ppapi/BUILD.gn

Issue 1480303002: Implement a basic PPAPI plugin for Blink layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Mac by removing (hopefully) superfluous DYLD_FRAMEWORK_PATH 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 copy("copy_test_files") { 5 copy("copy_test_files") {
6 visibility = [ ":*" ] 6 visibility = [ ":*" ]
7 sources = [ 7 sources = [
8 # Keep "test_case.html.mock-http-headers" with "test_case.html". 8 # Keep "test_case.html.mock-http-headers" with "test_case.html".
9 "tests/ppapi_nacl_tests_newlib.nmf", 9 "tests/ppapi_nacl_tests_newlib.nmf",
10 "tests/test_case.html", 10 "tests/test_case.html",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 "tests/test_utils.cc", 60 "tests/test_utils.cc",
61 ] 61 ]
62 62
63 deps = [ 63 deps = [
64 "//build/config/sanitizers:deps", 64 "//build/config/sanitizers:deps",
65 "//ppapi/cpp", 65 "//ppapi/cpp",
66 "//ppapi/shared_impl", 66 "//ppapi/shared_impl",
67 ] 67 ]
68 } 68 }
69 69
70 shared_library("blink_test_plugin") {
71 sources = [
72 "tests/blink_test_plugin.cc",
73 ]
74
75 deps = [
76 "//build/config/sanitizers:deps",
77 "//ppapi/cpp",
78 "//ppapi/shared_impl",
79 ]
80 }
81
70 test("ppapi_unittests") { 82 test("ppapi_unittests") {
71 sources = [ 83 sources = [
72 "host/resource_message_filter_unittest.cc", 84 "host/resource_message_filter_unittest.cc",
73 "proxy/device_enumeration_resource_helper_unittest.cc", 85 "proxy/device_enumeration_resource_helper_unittest.cc",
74 "proxy/file_chooser_resource_unittest.cc", 86 "proxy/file_chooser_resource_unittest.cc",
75 "proxy/file_system_resource_unittest.cc", 87 "proxy/file_system_resource_unittest.cc",
76 "proxy/flash_resource_unittest.cc", 88 "proxy/flash_resource_unittest.cc",
77 "proxy/interface_list_unittest.cc", 89 "proxy/interface_list_unittest.cc",
78 "proxy/mock_resource.cc", 90 "proxy/mock_resource.cc",
79 "proxy/mock_resource.h", 91 "proxy/mock_resource.h",
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})", 358 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})",
347 ] 359 ]
348 if (enable_pnacl) { 360 if (enable_pnacl) {
349 data_deps += [ 361 data_deps += [
350 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)", 362 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)",
351 ":ppapi_nacl_tests_pnacl_nonsfi_nmf(//build/toolchain/nacl:newlib_pnacl_ nonsfi)", 363 ":ppapi_nacl_tests_pnacl_nonsfi_nmf(//build/toolchain/nacl:newlib_pnacl_ nonsfi)",
352 ] 364 ]
353 } 365 }
354 } 366 }
355 } 367 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698