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 config("gles2_config") { | |
6 defines = [ "GLES2_USE_MOJO" ] | |
7 } | |
8 | |
9 # GYP version: mojo/mojo_public.gypi:mojo_gles2 | |
10 static_library("gles2") { | |
11 defines = [ | |
12 "MOJO_GLES2_IMPLEMENTATION", | |
13 ] | |
14 | |
15 configs += [ | |
16 ":gles2_config", | |
17 "//third_party/khronos:khronos_headers", | |
18 ] | |
19 public_configs = [ | |
20 ":gles2_config", | |
21 "//third_party/khronos:khronos_headers", | |
22 ] | |
23 | |
24 sources = [ | |
25 "../c/gles2/gles2.h", | |
26 "../c/gles2/gles2_export.h", | |
27 "../platform/native/gles2_thunks.cc", | |
28 "../platform/native/gles2_thunks.h", | |
29 "../platform/native/gles2_impl_thunks.cc", | |
30 "../platform/native/gles2_impl_thunks.h", | |
31 "../platform/native/gles2_impl_chromium_texture_mailbox_thunks.cc", | |
32 "../platform/native/gles2_impl_chromium_texture_mailbox_thunks.h", | |
33 "../platform/native/gles2_impl_chromium_sync_point_thunks.cc", | |
34 "../platform/native/gles2_impl_chromium_sync_point_thunks.h", | |
35 "gles2_interface.h", | |
36 ] | |
37 | |
38 if (is_mac) { | |
39 # TODO(GYP): Make it a run-path dependent library. | |
40 # 'DYLIB_INSTALL_NAME_BASE': '@loader_path', | |
41 } | |
42 } | |
43 | |
44 | |
45 # In an is_component_build build, everything can link against //mojo/gles2 | 5 # In an is_component_build build, everything can link against //mojo/gles2 |
46 # because it is built as a shared library. However, in a static build, | 6 # because it is built as a shared library. However, in a static build, |
47 # //mojo/gles2 is linked into an executable (e.g., mojo_shell), and must be | 7 # //mojo/gles2 is linked into an executable (e.g., mojo_shell), and must be |
48 # injected into other shared libraries (i.e., Mojo Apps) that need the mojo | 8 # injected into other shared libraries (i.e., Mojo Apps) that need the mojo |
49 # gles2 API. | 9 # gles2 API. |
50 # | 10 # |
51 # For component targets, add //mojo/public/gles2:for_component to your deps | 11 # For component targets, add //mojo/public/gles2:for_component to your deps |
52 # section. | 12 # section. |
53 # | 13 # |
54 # For shared_library targets (e.g., a Mojo App), add | 14 # For shared_library targets (e.g., a Mojo App), add |
55 # //mojo/public/gles2:for_shared_library to your deps | 15 # //mojo/public/gles2:for_shared_library to your deps |
56 | 16 |
57 group("for_shared_library") { | 17 group("for_shared_library") { |
58 if (is_component_build) { | 18 if (is_component_build) { |
59 deps = [ "//mojo/gles2" ] | 19 deps = [ "//mojo/gles2" ] |
60 } else { | 20 } else { |
61 deps = [ ":gles2" ] | 21 deps = [ ":gles2" ] |
62 } | 22 } |
63 } | 23 } |
64 | 24 |
65 group("for_component") { | 25 group("for_component") { |
66 if (is_component_build) { | 26 if (is_component_build) { |
67 deps = [ "//mojo/gles2" ] | 27 deps = [ "//mojo/gles2" ] |
68 } | 28 } |
69 } | 29 } |
| 30 |
| 31 # GYP version: mojo/mojo_public.gypi:mojo_gles2 |
| 32 static_library("gles2") { |
| 33 visibility = [ ":for_shared_library" ] |
| 34 |
| 35 sources = [ |
| 36 "../platform/native/gles2_thunks.cc", |
| 37 "../platform/native/gles2_thunks.h", |
| 38 "../platform/native/gles2_impl_thunks.cc", |
| 39 "../platform/native/gles2_impl_thunks.h", |
| 40 "../platform/native/gles2_impl_chromium_texture_mailbox_thunks.cc", |
| 41 "../platform/native/gles2_impl_chromium_texture_mailbox_thunks.h", |
| 42 "../platform/native/gles2_impl_chromium_sync_point_thunks.cc", |
| 43 "../platform/native/gles2_impl_chromium_sync_point_thunks.h", |
| 44 "gles2_interface.h", |
| 45 ] |
| 46 |
| 47 public_configs = [ "//third_party/khronos:khronos_headers" ] |
| 48 |
| 49 public_deps = [ "//mojo/public/c/gles2" ] |
| 50 |
| 51 defines = [ |
| 52 "MOJO_GLES2_IMPLEMENTATION", |
| 53 ] |
| 54 deps = [ |
| 55 "//mojo/public/c/environment", |
| 56 "//mojo/public/c/system", |
| 57 ] |
| 58 |
| 59 if (is_mac) { |
| 60 # TODO(GYP): Make it a run-path dependent library. |
| 61 # 'DYLIB_INSTALL_NAME_BASE': '@loader_path', |
| 62 } |
| 63 } |
OLD | NEW |