| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
| (...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 "//ui/gfx/geometry", | 831 "//ui/gfx/geometry", |
| 832 ] | 832 ] |
| 833 | 833 |
| 834 if (is_android) { | 834 if (is_android) { |
| 835 deps += [ "//testing/android/native_test:native_test_native_code" ] | 835 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 836 } | 836 } |
| 837 } | 837 } |
| 838 | 838 |
| 839 test("content_gl_tests") { | 839 test("content_gl_tests") { |
| 840 sources = [ | 840 sources = [ |
| 841 "../common/gpu/client/gl_helper_unittest.cc", | 841 "../browser/compositor/gl_helper_unittest.cc", |
| 842 "../common/gpu/client/gpu_in_process_context_tests.cc", | 842 "../common/gpu/client/gpu_in_process_context_tests.cc", |
| 843 "run_all_gl_tests.cc", | 843 "run_all_gl_tests.cc", |
| 844 ] | 844 ] |
| 845 | 845 |
| 846 deps = [ | 846 deps = [ |
| 847 ":test_support", | 847 ":test_support", |
| 848 "//base/test:test_support", | 848 "//base/test:test_support", |
| 849 "//content/public/common", | 849 "//content/public/common", |
| 850 "//gpu/blink", | 850 "//gpu/blink", |
| 851 "//gpu/command_buffer/common", | 851 "//gpu/command_buffer/common", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 868 } else { | 868 } else { |
| 869 data_deps = [ | 869 data_deps = [ |
| 870 "//third_party/ffmpeg", | 870 "//third_party/ffmpeg", |
| 871 "//third_party/mesa:osmesa", | 871 "//third_party/mesa:osmesa", |
| 872 ] | 872 ] |
| 873 } | 873 } |
| 874 } | 874 } |
| 875 | 875 |
| 876 test("content_gl_benchmark") { | 876 test("content_gl_benchmark") { |
| 877 sources = [ | 877 sources = [ |
| 878 "../common/gpu/client/gl_helper_benchmark.cc", | 878 "../browser/compositor/gl_helper_benchmark.cc", |
| 879 "run_gl_benchmark.cc", | 879 "run_gl_benchmark.cc", |
| 880 ] | 880 ] |
| 881 | 881 |
| 882 deps = [ | 882 deps = [ |
| 883 ":test_support", | 883 ":test_support", |
| 884 "//base/test:test_support", | 884 "//base/test:test_support", |
| 885 "//content/public/common", | 885 "//content/public/common", |
| 886 "//gpu/blink", | 886 "//gpu/blink", |
| 887 "//testing/gtest", | 887 "//testing/gtest", |
| 888 "//third_party/WebKit/public:blink", | 888 "//third_party/WebKit/public:blink", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 "//gpu:test_support", | 928 "//gpu:test_support", |
| 929 "//media/base/android", | 929 "//media/base/android", |
| 930 "//media/base/android:media_java", | 930 "//media/base/android:media_java", |
| 931 "//media/capture/video/android:capture_java", | 931 "//media/capture/video/android:capture_java", |
| 932 "//testing/gmock", | 932 "//testing/gmock", |
| 933 "//ui/android:ui_java", | 933 "//ui/android:ui_java", |
| 934 ] | 934 ] |
| 935 } | 935 } |
| 936 } | 936 } |
| 937 } | 937 } |
| OLD | NEW |