Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: mojo/mojo_services.gypi

Issue 147533004: Remove unneeded JNI registrations. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Updated by review comments. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« mojo/mojo_public.gypi ('K') | « mojo/mojo_public.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'mojo_gles2_bindings', 4 'target_name': 'mojo_gles2_bindings',
5 'type': 'static_library', 5 'type': 'static_library',
6 'sources': [ 6 'sources': [
7 'services/gles2/command_buffer.mojom', 7 'services/gles2/command_buffer.mojom',
8 'services/gles2/command_buffer_type_conversions.cc', 8 'services/gles2/command_buffer_type_conversions.cc',
9 'services/gles2/command_buffer_type_conversions.h', 9 'services/gles2/command_buffer_type_conversions.h',
10 'services/gles2/mojo_buffer_backing.cc', 10 'services/gles2/mojo_buffer_backing.cc',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'conditions': [ 90 'conditions': [
91 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { 91 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', {
92 'sources!': [ 92 'sources!': [
93 'services/native_viewport/native_viewport_stub.cc', 93 'services/native_viewport/native_viewport_stub.cc',
94 ], 94 ],
95 }], 95 }],
96 ['OS=="android"', { 96 ['OS=="android"', {
97 'dependencies': [ 97 'dependencies': [
98 'mojo_jni_headers', 98 'mojo_jni_headers',
99 ], 99 ],
100 'ldflags!': [
101 # Remove default export list because this lib has different exports.
102 '-Wl,--version-script="<(android_linker_script)"',
103 ],
104 'ldflags': [
105 # Don't export symbols from statically linked libraries.
106 '-Wl,--exclude-libs=ALL',
107 ],
100 }], 108 }],
101 ], 109 ],
102 }, 110 },
103 ], 111 ],
104 } 112 }
OLDNEW
« mojo/mojo_public.gypi ('K') | « mojo/mojo_public.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698