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 gypi_values = exec_script( | 5 gypi_values = exec_script( |
6 "//build/gypi_to_gn.py", | 6 "//build/gypi_to_gn.py", |
7 [ rebase_path("ppapi_sources.gypi") ], | 7 [ rebase_path("ppapi_sources.gypi") ], |
8 "scope", | 8 "scope", |
9 [ "ppapi_sources.gypi" ]) | 9 [ "ppapi_sources.gypi" ]) |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "-pedantic", | 47 "-pedantic", |
48 ] | 48 ] |
49 } | 49 } |
50 | 50 |
51 deps = [ | 51 deps = [ |
52 ":ppapi_c", | 52 ":ppapi_c", |
53 ":ppapi_cpp_objects", | 53 ":ppapi_cpp_objects", |
54 ] | 54 ] |
55 } | 55 } |
56 | 56 |
| 57 source_set("ppapi_internal_module") { |
| 58 sources = [ |
| 59 "cpp/private/internal_module.cc", |
| 60 "cpp/private/internal_module.h", |
| 61 ] |
| 62 } |
| 63 |
57 source_set("ppapi_gles2") { | 64 source_set("ppapi_gles2") { |
58 sources = [ | 65 sources = [ |
59 "lib/gl/gles2/gl2ext_ppapi.c", | 66 "lib/gl/gles2/gl2ext_ppapi.c", |
60 "lib/gl/gles2/gl2ext_ppapi.h", | 67 "lib/gl/gles2/gl2ext_ppapi.h", |
61 "lib/gl/gles2/gles2.c", | 68 "lib/gl/gles2/gles2.c", |
62 ] | 69 ] |
63 | 70 |
64 include_dirs = [ "lib/gl/include" ] | 71 include_dirs = [ "lib/gl/include" ] |
65 | 72 |
66 deps = [ | 73 deps = [ |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 ":ppapi_shared", | 796 ":ppapi_shared", |
790 "//base/test:test_support", | 797 "//base/test:test_support", |
791 "//ipc", | 798 "//ipc", |
792 "//ipc:test_support", | 799 "//ipc:test_support", |
793 "//testing/gmock", | 800 "//testing/gmock", |
794 "//testing/gtest", | 801 "//testing/gtest", |
795 ] | 802 ] |
796 } | 803 } |
797 | 804 |
798 # TODO(GYP) other targets from ppapi_tests.gyp | 805 # TODO(GYP) other targets from ppapi_tests.gyp |
OLD | NEW |