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("//ppapi/ppapi_sources.gni") | 5 import("//ppapi/ppapi_sources.gni") |
6 # TODO(brettw) argument list is too long. Need to add response files. | 6 shared_library("ppapi_tests") { |
7 #shared_library("ppapi_tests") { | 7 sources = ppapi_sources.test_common_source_files + |
8 # sources = ppapi_sources.test_common_source_files + | 8 ppapi_sources.test_trusted_source_files |
9 # ppapi_sources.test_trusted_source_files | 9 |
10 # | 10 defines = [ "GL_GLEXT_PROTOTYPES" ] |
11 # defines = [ "GL_GLEXT_PROTOTYPES" ] | 11 include_dirs = [ "lib/gl/include" ] |
12 # include_dirs = [ "lib/gl/include" ] | 12 |
13 # | 13 deps = [ |
14 # deps = [ | 14 "//ppapi/cpp", |
15 # "//ppapi/cpp", | 15 "//ppapi/shared_impl", |
16 # "//ppapi/shared_impl", | 16 ] |
17 # ] | 17 } |
18 #} | |
19 # TODO(GYP) other targets from ppapi_tests.gyp | 18 # TODO(GYP) other targets from ppapi_tests.gyp |
OLD | NEW |