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

Side by Side Diff: ppapi/BUILD.gn

Issue 1434823002: Build NaCl browser tests with GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve code review feedback Created 5 years, 1 month 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 sources = [ 143 sources = [
144 "tools/pepper_hash_for_uma.cc", 144 "tools/pepper_hash_for_uma.cc",
145 ] 145 ]
146 146
147 deps = [ 147 deps = [
148 "//base", 148 "//base",
149 "//build/config/sanitizers:deps", 149 "//build/config/sanitizers:deps",
150 ] 150 ]
151 } 151 }
152 152
153 source_set("ppapi_cpp_lib") { 153 static_library("ppapi_cpp_lib") {
brettw 2015/11/19 19:08:16 Why was this changed? If something depends on a st
Roland McGrath 2015/11/19 19:16:13 A comment certainly doesn't hurt. But these are s
Petr Hosek 2015/11/19 20:17:56 Comment added.
154 sources = ppapi_sources.cpp_source_files 154 sources = ppapi_sources.cpp_source_files
155 sources += [ 155 sources += [
156 "cpp/module_embedder.h", 156 "cpp/module_embedder.h",
157 "cpp/ppp_entrypoints.cc", 157 "cpp/ppp_entrypoints.cc",
158 ] 158 ]
159 deps = [ 159 deps = [
160 "//build/config/nacl:nacl_base", 160 "//build/config/nacl:nacl_base",
161 ] 161 ]
162 } 162 }
163 163
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})", 343 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})",
344 ] 344 ]
345 if (enable_pnacl) { 345 if (enable_pnacl) {
346 data_deps += [ 346 data_deps += [
347 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)", 347 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)",
348 ":ppapi_nacl_tests_pnacl_nonsfi_nmf(//build/toolchain/nacl:newlib_pnacl_ nonsfi)", 348 ":ppapi_nacl_tests_pnacl_nonsfi_nmf(//build/toolchain/nacl:newlib_pnacl_ nonsfi)",
349 ] 349 ]
350 } 350 }
351 } 351 }
352 } 352 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698