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 copy("copy_test_files") { | 5 copy("copy_test_files") { |
6 visibility = [ ":*" ] | 6 visibility = [ ":*" ] |
7 sources = [ | 7 sources = [ |
8 # Keep "test_case.html.mock-http-headers" with "test_case.html". | 8 # Keep "test_case.html.mock-http-headers" with "test_case.html". |
9 "tests/ppapi_nacl_tests_newlib.nmf", | 9 "tests/ppapi_nacl_tests_newlib.nmf", |
10 "tests/test_case.html", | 10 "tests/test_case.html", |
(...skipping 16 matching lines...) Expand all Loading... |
27 ] | 27 ] |
28 } | 28 } |
29 | 29 |
30 import("//ppapi/ppapi_sources.gni") | 30 import("//ppapi/ppapi_sources.gni") |
31 import("//testing/test.gni") | 31 import("//testing/test.gni") |
32 | 32 |
33 shared_library("ppapi_tests") { | 33 shared_library("ppapi_tests") { |
34 sources = ppapi_sources.test_common_source_files + | 34 sources = ppapi_sources.test_common_source_files + |
35 ppapi_sources.test_trusted_source_files | 35 ppapi_sources.test_trusted_source_files |
36 | 36 |
37 configs += [ "//build/config:precompiled_headers" ] | |
38 defines = [ "GL_GLEXT_PROTOTYPES" ] | 37 defines = [ "GL_GLEXT_PROTOTYPES" ] |
39 include_dirs = [ "lib/gl/include" ] | 38 include_dirs = [ "lib/gl/include" ] |
40 | 39 |
41 deps = [ | 40 deps = [ |
42 "//ppapi/cpp", | 41 "//ppapi/cpp", |
43 "//ppapi/shared_impl", | 42 "//ppapi/shared_impl", |
44 ":copy_test_files", | 43 ":copy_test_files", |
45 ":copy_test_files2", | 44 ":copy_test_files2", |
46 ] | 45 ] |
47 } | 46 } |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 | 131 |
133 executable("pepper_hash_for_uma") { | 132 executable("pepper_hash_for_uma") { |
134 sources = [ | 133 sources = [ |
135 "tools/pepper_hash_for_uma.cc", | 134 "tools/pepper_hash_for_uma.cc", |
136 ] | 135 ] |
137 | 136 |
138 deps = [ | 137 deps = [ |
139 "//base", | 138 "//base", |
140 ] | 139 ] |
141 } | 140 } |
OLD | NEW |