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

Side by Side Diff: ipc/BUILD.gn

Issue 1855303003: Wrap deprecated sandbox functions in C++ class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « content/content_common.gypi ('k') | ipc/DEPS » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("ipc") { 8 component("ipc") {
9 sources = [ 9 sources = [
10 "attachment_broker.cc", 10 "attachment_broker.cc",
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 deps = [ 190 deps = [
191 ":ipc", 191 ":ipc",
192 ":test_support", 192 ":test_support",
193 "//base", 193 "//base",
194 "//base:i18n", 194 "//base:i18n",
195 "//base/test:run_all_unittests", 195 "//base/test:run_all_unittests",
196 "//base/test:test_support", 196 "//base/test:test_support",
197 "//crypto", 197 "//crypto",
198 "//testing/gtest", 198 "//testing/gtest",
199 ] 199 ]
200
201 if (is_mac) {
202 deps += [ "//sandbox/mac:seatbelt" ]
203 }
200 } 204 }
201 205
202 test("ipc_perftests") { 206 test("ipc_perftests") {
203 sources = [ 207 sources = [
204 "ipc_perftests.cc", 208 "ipc_perftests.cc",
205 ] 209 ]
206 210
207 # TODO(brettw) hook up Android testing. 211 # TODO(brettw) hook up Android testing.
208 #if (is_android && gtest_target_type == "shared_library") { 212 #if (is_android && gtest_target_type == "shared_library") {
209 # deps += "/testing/android/native_test.gyp:native_testNative_code" 213 # deps += "/testing/android/native_test.gyp:native_testNative_code"
(...skipping 30 matching lines...) Expand all
240 ] 244 ]
241 public_deps = [ 245 public_deps = [
242 ":ipc", 246 ":ipc",
243 ] 247 ]
244 deps = [ 248 deps = [
245 "//base", 249 "//base",
246 "//base/test:test_support", 250 "//base/test:test_support",
247 "//testing/gtest", 251 "//testing/gtest",
248 ] 252 ]
249 } 253 }
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | ipc/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698