Focus the history group that was clicked.
[chromium-blink-merge.git] / ppapi / BUILD.gn
blob726577e09daf1650a4ecef607a629fd1cb729e1a
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
3 # found in the LICENSE file.
5 copy("copy_test_files") {
6   visibility = [ ":*" ]
7   sources = [
8     # Keep "test_case.html.mock-http-headers" with "test_case.html".
9     "tests/ppapi_nacl_tests_newlib.nmf",
10     "tests/test_case.html",
11     "tests/test_case.html.mock-http-headers",
12     "tests/test_page.css",
13   ]
14   outputs = [
15     "$root_out_dir/{{source_file_part}}",
16   ]
19 copy("copy_test_files2") {
20   visibility = [ ":*" ]
21   sources = [
22     "tests/test_url_loader_data/hello.txt",
23   ]
24   outputs = [
25     "$root_out_dir/test_url_loader_data/{{source_file_part}}",
26   ]
29 import("//ppapi/ppapi_sources.gni")
30 import("//testing/test.gni")
32 shared_library("ppapi_tests") {
33   sources = ppapi_sources.test_common_source_files +
34             ppapi_sources.test_trusted_source_files
36   defines = [ "GL_GLEXT_PROTOTYPES" ]
37   include_dirs = [ "lib/gl/include" ]
39   deps = [
40     "//ppapi/cpp",
41     "//ppapi/shared_impl",
42     ":copy_test_files",
43     ":copy_test_files2",
44   ]
47 test("ppapi_unittests") {
48   sources = [
49     "host/resource_message_filter_unittest.cc",
50     "proxy/device_enumeration_resource_helper_unittest.cc",
51     "proxy/file_chooser_resource_unittest.cc",
52     "proxy/file_system_resource_unittest.cc",
53     "proxy/flash_resource_unittest.cc",
54     "proxy/interface_list_unittest.cc",
55     "proxy/mock_resource.cc",
56     "proxy/mock_resource.h",
57     "proxy/nacl_message_scanner_unittest.cc",
58     "proxy/pdf_resource_unittest.cc",
59     "proxy/plugin_dispatcher_unittest.cc",
60     "proxy/plugin_resource_tracker_unittest.cc",
61     "proxy/plugin_var_tracker_unittest.cc",
62     "proxy/ppb_var_unittest.cc",
63     "proxy/ppp_instance_private_proxy_unittest.cc",
64     "proxy/ppp_instance_proxy_unittest.cc",
65     "proxy/ppp_messaging_proxy_unittest.cc",
66     "proxy/printing_resource_unittest.cc",
67     "proxy/raw_var_data_unittest.cc",
68     "proxy/serialized_var_unittest.cc",
69     "proxy/tracked_callback_unittest.cc",
70     "proxy/video_decoder_resource_unittest.cc",
71     "proxy/video_encoder_resource_unittest.cc",
72     "proxy/websocket_resource_unittest.cc",
73     "shared_impl/media_stream_audio_track_shared_unittest.cc",
74     "shared_impl/media_stream_buffer_manager_unittest.cc",
75     "shared_impl/media_stream_video_track_shared_unittest.cc",
76     "shared_impl/proxy_lock_unittest.cc",
77     "shared_impl/resource_tracker_unittest.cc",
78     "shared_impl/thread_aware_callback_unittest.cc",
79     "shared_impl/time_conversion_unittest.cc",
80     "shared_impl/var_tracker_unittest.cc",
81   ]
83   deps = [
84     "//base/allocator",
85     "//base/test:run_all_unittests",
86     "//base/test:test_support",
87     "//gpu/ipc",
88     "//ipc",
89     "//ipc:test_support",
90     "//media:shared_memory_support",
91     "//ppapi/host",
92     "//ppapi/proxy",
93     "//ppapi/proxy:test_support",
94     "//ppapi/shared_impl",
95     "//ppapi/shared_impl:test_support",
96     "//testing/gmock",
97     "//testing/gtest",
98     "//ui/surface",
99   ]
102 test("ppapi_perftests") {
103   sources = [
104     "proxy/ppapi_perftests.cc",
105     "proxy/ppp_messaging_proxy_perftest.cc",
106   ]
108   deps = [
109     "//base/allocator",
110     "//base/test:test_support",
111     "//ppapi/proxy",
112     "//ppapi/proxy:test_support",
113     "//ppapi/shared_impl",
114     "//ppapi/shared_impl:test_support",
115     "//testing/gtest",
116   ]
119 executable("pepper_hash_for_uma") {
120   sources = [
121     "tools/pepper_hash_for_uma.cc",
122   ]
124   deps = [
125     "//base",
126   ]