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/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build_overrides/v8.gni") | 9 import("//build_overrides/v8.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 "//ui/base", | 777 "//ui/base", |
778 "//ui/gfx", | 778 "//ui/gfx", |
779 "//ui/gfx:test_support", | 779 "//ui/gfx:test_support", |
780 "//ui/gfx/geometry", | 780 "//ui/gfx/geometry", |
781 "//ui/gl", | 781 "//ui/gl", |
782 "//ui/gl:test_support", | 782 "//ui/gl:test_support", |
783 "//v8", | 783 "//v8", |
784 ] | 784 ] |
785 | 785 |
786 if (is_android) { | 786 if (is_android) { |
787 deps += [ "//testing/android/native_test:native_test_native_code" ] | 787 apk_deps = [ |
| 788 "//content/public/test/android:content_java_test_support", |
| 789 "//content/shell/android:copy_content_shell_assets", |
| 790 ] |
| 791 apk_asset_location = "$root_build_dir/content_shell/assets" |
788 } else { | 792 } else { |
789 data_deps = [ | 793 data_deps = [ |
790 "//third_party/ffmpeg", | 794 "//third_party/ffmpeg", |
791 "//third_party/mesa:osmesa", | 795 "//third_party/mesa:osmesa", |
792 ] | 796 ] |
793 } | 797 } |
794 } | 798 } |
795 | 799 |
796 test("content_gl_benchmark") { | 800 test("content_gl_benchmark") { |
797 sources = [ | 801 sources = [ |
798 "../common/gpu/client/gl_helper_benchmark.cc", | 802 "../common/gpu/client/gl_helper_benchmark.cc", |
799 ] | 803 ] |
800 | 804 |
801 deps = [ | 805 deps = [ |
802 ":test_support", | 806 ":test_support", |
803 "//base/allocator", | 807 "//base/allocator", |
804 "//base/test:test_support", | 808 "//base/test:test_support", |
805 "//content/public/common", | 809 "//content/public/common", |
806 "//gpu/blink", | 810 "//gpu/blink", |
807 "//testing/gtest", | 811 "//testing/gtest", |
808 "//third_party/WebKit/public:blink", | 812 "//third_party/WebKit/public:blink", |
809 "//ui/base", | 813 "//ui/base", |
810 "//ui/gfx", | 814 "//ui/gfx", |
811 "//ui/gfx/geometry", | 815 "//ui/gfx/geometry", |
812 "//ui/gl", | 816 "//ui/gl", |
813 "//ui/gl:test_support", | 817 "//ui/gl:test_support", |
814 ] | 818 ] |
815 } | 819 } |
OLD | NEW |