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

Side by Side Diff: src/shared/gio/gio.gyp

Issue 140653005: Adds tls_edit utility which patches irt_core.nexe's TLS usage. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Rebased to master Created 6 years, 10 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 | « site_scons/site_tools/component_builders.py ('k') | src/shared/platform/platform.gyp » ('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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'includes': [ 6 'includes': [
7 '../../../build/common.gypi', 7 '../../../build/common.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'common_sources': [ 10 'common_sources': [
11 'gio.c', 11 'gio.c',
12 'gio_mem.c', 12 'gio_mem.c',
13 'gprintf.c', 13 'gprintf.c',
14 'gio_mem_snapshot.c', 14 'gio_mem_snapshot.c',
15 ], 15 ],
16 'trusted_sources': [ 16 'trusted_sources': [
17 '<@(common_sources)', 17 '<@(common_sources)',
18 'gio_pio.c', 18 'gio_pio.c',
19 ], 19 ],
20 }, 20 },
21 'targets': [ 21 'targets': [
22 { 22 {
23 'target_name': 'gio', 23 'target_name': 'gio',
24 'type': 'static_library', 24 'type': 'static_library',
25 # tls_edit relies on gio which is always built for the host platform.
26 'toolsets': ['host', 'target'],
25 'sources': [ 27 'sources': [
26 '<@(trusted_sources)', 28 '<@(trusted_sources)',
27 ], 29 ],
28 }, 30 },
29 { 31 {
30 'target_name': 'gio_lib', 32 'target_name': 'gio_lib',
31 'type': 'none', 33 'type': 'none',
32 'variables': { 34 'variables': {
33 'nlib_target': 'libgio.a', 35 'nlib_target': 'libgio.a',
34 'nso_target': 'libgio.so', 36 'nso_target': 'libgio.so',
(...skipping 18 matching lines...) Expand all
53 '<@(trusted_sources)', 55 '<@(trusted_sources)',
54 ], 56 ],
55 'variables': { 57 'variables': {
56 'win_target': 'x64', 58 'win_target': 'x64',
57 }, 59 },
58 } 60 }
59 ], 61 ],
60 }], 62 }],
61 ], 63 ],
62 } 64 }
OLDNEW
« no previous file with comments | « site_scons/site_tools/component_builders.py ('k') | src/shared/platform/platform.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698