OLD | NEW |
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 1582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1593 "//ui/gfx/ipc/skia", | 1593 "//ui/gfx/ipc/skia", |
1594 "//ui/gl", | 1594 "//ui/gl", |
1595 "//ui/gl:test_support", | 1595 "//ui/gl:test_support", |
1596 ] | 1596 ] |
1597 | 1597 |
1598 data_deps = [ | 1598 data_deps = [ |
1599 "//components/filesystem:filesystem", | 1599 "//components/filesystem:filesystem", |
1600 "//third_party/mesa:osmesa", | 1600 "//third_party/mesa:osmesa", |
1601 ] | 1601 ] |
1602 | 1602 |
1603 if (!is_win) { | 1603 if (is_posix) { |
1604 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ] | 1604 sources += [ "../browser/posix_file_descriptor_info_impl_unittest.cc" ] |
1605 } | 1605 } |
1606 | 1606 |
1607 if (enable_plugins) { | 1607 if (enable_plugins) { |
1608 # Put WebRTC-related plugins sources in the "enable_webrtc && | 1608 # Put WebRTC-related plugins sources in the "enable_webrtc && |
1609 # enable_plugins" section below. | 1609 # enable_plugins" section below. |
1610 sources += [ | 1610 sources += [ |
1611 "../browser/renderer_host/pepper/browser_ppapi_host_test.cc", | 1611 "../browser/renderer_host/pepper/browser_ppapi_host_test.cc", |
1612 "../browser/renderer_host/pepper/browser_ppapi_host_test.h", | 1612 "../browser/renderer_host/pepper/browser_ppapi_host_test.h", |
1613 "../browser/renderer_host/pepper/pepper_file_system_browser_host_unittest.
cc", | 1613 "../browser/renderer_host/pepper/pepper_file_system_browser_host_unittest.
cc", |
1614 "../browser/renderer_host/pepper/pepper_gamepad_host_unittest.cc", | 1614 "../browser/renderer_host/pepper/pepper_gamepad_host_unittest.cc", |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |