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

Side by Side Diff: mojo/mojo_variables.gypi

Issue 448873002: mojo: Reland "Convert gles2 to the new thunking system." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to ToT Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/public/c/gles2/gles2_export.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # 5 #
6 # A set of GYP variables that are shared between mojo.gyp and mojo_base.gyp 6 # A set of GYP variables that are shared between mojo.gyp and mojo_base.gyp
7 # 7 #
8 { 8 {
9 'variables': { 9 'variables': {
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 16 matching lines...) Expand all
27 # NOTE: component != "shared_library" implies that we are generating a 27 # NOTE: component != "shared_library" implies that we are generating a
28 # static library, and in that case, it is expected that the target 28 # static library, and in that case, it is expected that the target
29 # listing the component as a dependency will specify either mojo_system 29 # listing the component as a dependency will specify either mojo_system
30 # or mojo_system_impl to link against. This enables multiple targets to 30 # or mojo_system_impl to link against. This enables multiple targets to
31 # link against the same component library without having to agree on 31 # link against the same component library without having to agree on
32 # which Mojo system library they are using. 32 # which Mojo system library they are using.
33 # 33 #
34 ['component=="shared_library"', { 34 ['component=="shared_library"', {
35 'mojo_system_for_component': "mojo_base.gyp:mojo_system_impl", 35 'mojo_system_for_component': "mojo_base.gyp:mojo_system_impl",
36 'mojo_system_for_loadable_module': "mojo_base.gyp:mojo_system_impl", 36 'mojo_system_for_loadable_module': "mojo_base.gyp:mojo_system_impl",
37 'mojo_gles2_for_component': "mojo_base.gyp:mojo_gles2_impl",
38 'mojo_gles2_for_loadable_module': "mojo_base.gyp:mojo_gles2_impl",
37 }, { 39 }, {
38 'mojo_system_for_component': "mojo_base.gyp:mojo_none", 40 'mojo_system_for_component': "mojo_base.gyp:mojo_none",
39 'mojo_system_for_loadable_module': "mojo_base.gyp:mojo_system", 41 'mojo_system_for_loadable_module': "mojo_base.gyp:mojo_system",
42 'mojo_gles2_for_component': "mojo_base.gyp:mojo_none",
43 'mojo_gles2_for_loadable_module': "mojo_base.gyp:mojo_gles2",
40 }], 44 }],
41 ], 45 ],
42 }, 46 },
43 } 47 }
OLDNEW
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/public/c/gles2/gles2_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698