| 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 # In the non component build, the thunks need to be linked directly into the | 5 # In the non component build, the thunks need to be linked directly into the |
| 6 # loadable module since they define symbols that should be exported from that | 6 # loadable module since they define symbols that should be exported from that |
| 7 # library. So, this variable expands out to either list the sources directly (in | 7 # library. So, this variable expands out to either list the sources directly (in |
| 8 # the component build where no symbols need to be exported) a dependency. | 8 # the component build where no symbols need to be exported) a dependency. |
| 9 { | 9 { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 # We need to be able to call the MojoSetGLES2Thunks() function in | 36 # We need to be able to call the MojoSetGLES2Thunks() function in |
| 37 # gles2_thunks.cc | 37 # gles2_thunks.cc |
| 38 ['OS=="android"', { | 38 ['OS=="android"', { |
| 39 'ldflags!': [ | 39 'ldflags!': [ |
| 40 '-Wl,--exclude-libs=ALL', | 40 '-Wl,--exclude-libs=ALL', |
| 41 ], | 41 ], |
| 42 }], | 42 }], |
| 43 ], | 43 ], |
| 44 }, | 44 }, |
| 45 'sources': [ | 45 'sources': [ |
| 46 '<(DEPTH)/mojo/public/c/gles2/gles2.h', | 46 '<(DEPTH)/third_party/mojo/src/mojo/public/c/gles2/gles2.h', |
| 47 '<(DEPTH)/mojo/public/c/gles2/gles2_export.h', | 47 '<(DEPTH)/third_party/mojo/src/mojo/public/c/gles2/gles2_export.h', |
| 48 '<(DEPTH)/mojo/public/platform/native/gles2_thunks.cc', | 48 '<(DEPTH)/third_party/mojo/src/mojo/public/platform/native/gles2_thunks.
cc', |
| 49 '<(DEPTH)/mojo/public/platform/native/gles2_thunks.h', | 49 '<(DEPTH)/third_party/mojo/src/mojo/public/platform/native/gles2_thunks.
h', |
| 50 '<(DEPTH)/mojo/public/platform/native/gles2_impl_thunks.cc', | 50 '<(DEPTH)/third_party/mojo/src/mojo/public/platform/native/gles2_impl_th
unks.cc', |
| 51 '<(DEPTH)/mojo/public/platform/native/gles2_impl_thunks.h', | 51 '<(DEPTH)/third_party/mojo/src/mojo/public/platform/native/gles2_impl_th
unks.h', |
| 52 '<(DEPTH)/mojo/public/platform/native/gles2_impl_chromium_texture_mailbo
x_thunks.cc', | 52 '<(DEPTH)/third_party/mojo/src/mojo/public/platform/native/gles2_impl_ch
romium_texture_mailbox_thunks.cc', |
| 53 '<(DEPTH)/mojo/public/platform/native/gles2_impl_chromium_texture_mailbo
x_thunks.h', | 53 '<(DEPTH)/third_party/mojo/src/mojo/public/platform/native/gles2_impl_ch
romium_texture_mailbox_thunks.h', |
| 54 '<(DEPTH)/mojo/public/platform/native/gles2_impl_chromium_sync_point_thu
nks.cc', | 54 '<(DEPTH)/third_party/mojo/src/mojo/public/platform/native/gles2_impl_ch
romium_sync_point_thunks.cc', |
| 55 '<(DEPTH)/mojo/public/platform/native/gles2_impl_chromium_sync_point_thu
nks.h', | 55 '<(DEPTH)/third_party/mojo/src/mojo/public/platform/native/gles2_impl_ch
romium_sync_point_thunks.h', |
| 56 ], | 56 ], |
| 57 }] | 57 }] |
| 58 ] | 58 ] |
| 59 } | 59 } |
| OLD | NEW |