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

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

Issue 2950153002: Improve process launch handle sharing API. (Closed)
Patch Set: Fix Created 3 years, 5 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/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 1581 matching lines...) Expand 10 before | Expand all | Expand 10 after
1592 "//ui/gfx/ipc/skia", 1592 "//ui/gfx/ipc/skia",
1593 "//ui/gl", 1593 "//ui/gl",
1594 "//ui/gl:test_support", 1594 "//ui/gl:test_support",
1595 ] 1595 ]
1596 1596
1597 data_deps = [ 1597 data_deps = [
1598 "//components/filesystem:filesystem", 1598 "//components/filesystem:filesystem",
1599 "//third_party/mesa:osmesa", 1599 "//third_party/mesa:osmesa",
1600 ] 1600 ]
1601 1601
1602 if (!is_win) { 1602 if (is_posix) {
1603 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ] 1603 sources += [ "../browser/posix_file_descriptor_info_impl_unittest.cc" ]
1604 } 1604 }
1605 1605
1606 if (enable_plugins) { 1606 if (enable_plugins) {
1607 # Put WebRTC-related plugins sources in the "enable_webrtc && 1607 # Put WebRTC-related plugins sources in the "enable_webrtc &&
1608 # enable_plugins" section below. 1608 # enable_plugins" section below.
1609 sources += [ 1609 sources += [
1610 "../browser/renderer_host/pepper/browser_ppapi_host_test.cc", 1610 "../browser/renderer_host/pepper/browser_ppapi_host_test.cc",
1611 "../browser/renderer_host/pepper/browser_ppapi_host_test.h", 1611 "../browser/renderer_host/pepper/browser_ppapi_host_test.h",
1612 "../browser/renderer_host/pepper/pepper_file_system_browser_host_unittest. cc", 1612 "../browser/renderer_host/pepper/pepper_file_system_browser_host_unittest. cc",
1613 "../browser/renderer_host/pepper/pepper_gamepad_host_unittest.cc", 1613 "../browser/renderer_host/pepper/pepper_gamepad_host_unittest.cc",
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
1905 if (is_android) { 1905 if (is_android) {
1906 deps += [ "//testing/android/native_test:native_test_native_code" ] 1906 deps += [ "//testing/android/native_test:native_test_native_code" ]
1907 } 1907 }
1908 } 1908 }
1909 1909
1910 group("fuzzers") { 1910 group("fuzzers") {
1911 deps = [ 1911 deps = [
1912 "//content/test/fuzzer", 1912 "//content/test/fuzzer",
1913 ] 1913 ]
1914 } 1914 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698