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

Side by Side Diff: ppapi/BUILD.gn

Issue 1647453002: allocator cleanup: remove dependencies on allocator from all targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pure rebase Created 4 years, 10 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
« no previous file with comments | « net/net.gyp ('k') | ppapi/ppapi_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 assert(!is_android || enable_plugins, 5 assert(!is_android || enable_plugins,
6 "//ppapi should not be referenced when is_android && !enable_plugins") 6 "//ppapi should not be referenced when is_android && !enable_plugins")
7 7
8 copy("copy_test_files") { 8 copy("copy_test_files") {
9 visibility = [ ":*" ] 9 visibility = [ ":*" ]
10 sources = [ 10 sources = [
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 "shared_impl/media_stream_buffer_manager_unittest.cc", 112 "shared_impl/media_stream_buffer_manager_unittest.cc",
113 "shared_impl/media_stream_video_track_shared_unittest.cc", 113 "shared_impl/media_stream_video_track_shared_unittest.cc",
114 "shared_impl/proxy_lock_unittest.cc", 114 "shared_impl/proxy_lock_unittest.cc",
115 "shared_impl/resource_tracker_unittest.cc", 115 "shared_impl/resource_tracker_unittest.cc",
116 "shared_impl/thread_aware_callback_unittest.cc", 116 "shared_impl/thread_aware_callback_unittest.cc",
117 "shared_impl/time_conversion_unittest.cc", 117 "shared_impl/time_conversion_unittest.cc",
118 "shared_impl/var_tracker_unittest.cc", 118 "shared_impl/var_tracker_unittest.cc",
119 ] 119 ]
120 120
121 deps = [ 121 deps = [
122 "//base/allocator",
123 "//base/test:run_all_unittests", 122 "//base/test:run_all_unittests",
124 "//base/test:test_support", 123 "//base/test:test_support",
125 "//gpu/ipc", 124 "//gpu/ipc",
126 "//ipc", 125 "//ipc",
127 "//ipc:test_support", 126 "//ipc:test_support",
128 "//media:shared_memory_support", 127 "//media:shared_memory_support",
129 "//ppapi/host", 128 "//ppapi/host",
130 "//ppapi/proxy", 129 "//ppapi/proxy",
131 "//ppapi/proxy:test_support", 130 "//ppapi/proxy:test_support",
132 "//ppapi/shared_impl", 131 "//ppapi/shared_impl",
133 "//ppapi/shared_impl:test_support", 132 "//ppapi/shared_impl:test_support",
134 "//testing/gmock", 133 "//testing/gmock",
135 "//testing/gtest", 134 "//testing/gtest",
136 "//ui/surface", 135 "//ui/surface",
137 ] 136 ]
138 } 137 }
139 138
140 test("ppapi_perftests") { 139 test("ppapi_perftests") {
141 sources = [ 140 sources = [
142 "proxy/ppapi_perftests.cc", 141 "proxy/ppapi_perftests.cc",
143 "proxy/ppp_messaging_proxy_perftest.cc", 142 "proxy/ppp_messaging_proxy_perftest.cc",
144 ] 143 ]
145 144
146 deps = [ 145 deps = [
147 "//base/allocator",
148 "//base/test:test_support", 146 "//base/test:test_support",
149 "//ppapi/proxy", 147 "//ppapi/proxy",
150 "//ppapi/proxy:test_support", 148 "//ppapi/proxy:test_support",
151 "//ppapi/shared_impl", 149 "//ppapi/shared_impl",
152 "//ppapi/shared_impl:test_support", 150 "//ppapi/shared_impl:test_support",
153 "//testing/gtest", 151 "//testing/gtest",
154 ] 152 ]
155 } 153 }
156 154
157 executable("pepper_hash_for_uma") { 155 executable("pepper_hash_for_uma") {
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 group("ppapi_nacl_tests_all") { 365 group("ppapi_nacl_tests_all") {
368 data_deps = [ 366 data_deps = [
369 ":copy_test_files", 367 ":copy_test_files",
370 ":ppapi_nacl_tests_copy(//build/toolchain/nacl:clang_newlib_${target_cpu}) ", 368 ":ppapi_nacl_tests_copy(//build/toolchain/nacl:clang_newlib_${target_cpu}) ",
371 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})", 369 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})",
372 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", 370 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)",
373 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)", 371 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)",
374 ] 372 ]
375 } 373 }
376 } 374 }
OLDNEW
« no previous file with comments | « net/net.gyp ('k') | ppapi/ppapi_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698