| 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 1578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1589 "//ui/gfx/ipc/skia", | 1589 "//ui/gfx/ipc/skia", |
| 1590 "//ui/gl", | 1590 "//ui/gl", |
| 1591 "//ui/gl:test_support", | 1591 "//ui/gl:test_support", |
| 1592 ] | 1592 ] |
| 1593 | 1593 |
| 1594 data_deps = [ | 1594 data_deps = [ |
| 1595 "//components/filesystem:filesystem", | 1595 "//components/filesystem:filesystem", |
| 1596 "//third_party/mesa:osmesa", | 1596 "//third_party/mesa:osmesa", |
| 1597 ] | 1597 ] |
| 1598 | 1598 |
| 1599 if (!is_win) { | 1599 if (is_posix) { |
| 1600 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ] | 1600 sources += [ "../browser/posix_file_descriptor_info_impl_unittest.cc" ] |
| 1601 } | 1601 } |
| 1602 | 1602 |
| 1603 if (enable_plugins) { | 1603 if (enable_plugins) { |
| 1604 # Put WebRTC-related plugins sources in the "enable_webrtc && | 1604 # Put WebRTC-related plugins sources in the "enable_webrtc && |
| 1605 # enable_plugins" section below. | 1605 # enable_plugins" section below. |
| 1606 sources += [ | 1606 sources += [ |
| 1607 "../browser/renderer_host/pepper/browser_ppapi_host_test.cc", | 1607 "../browser/renderer_host/pepper/browser_ppapi_host_test.cc", |
| 1608 "../browser/renderer_host/pepper/browser_ppapi_host_test.h", | 1608 "../browser/renderer_host/pepper/browser_ppapi_host_test.h", |
| 1609 "../browser/renderer_host/pepper/pepper_file_system_browser_host_unittest.
cc", | 1609 "../browser/renderer_host/pepper/pepper_file_system_browser_host_unittest.
cc", |
| 1610 "../browser/renderer_host/pepper/pepper_gamepad_host_unittest.cc", | 1610 "../browser/renderer_host/pepper/pepper_gamepad_host_unittest.cc", |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1902 if (is_android) { | 1902 if (is_android) { |
| 1903 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1903 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1904 } | 1904 } |
| 1905 } | 1905 } |
| 1906 | 1906 |
| 1907 group("fuzzers") { | 1907 group("fuzzers") { |
| 1908 deps = [ | 1908 deps = [ |
| 1909 "//content/test/fuzzer", | 1909 "//content/test/fuzzer", |
| 1910 ] | 1910 ] |
| 1911 } | 1911 } |
| OLD | NEW |