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

Side by Side Diff: src/trusted/weak_ref/weak_ref.gyp

Issue 7216027: typesafe call-on-main-thread interface. no cast to/from void* required. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 6 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 | « src/trusted/weak_ref/weak_ref.h ('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 # -*- python -*- 1 # -*- python -*-
2 # Copyright 2011 (c) The Native Client Authors. All rights reserved. Use 2 # Copyright 2011 (c) The Native Client Authors. All rights reserved. Use
3 # of this source code is governed by a BSD-style license that can be 3 # of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 { 5 {
6 'includes': [ 6 'includes': [
7 '../../../build/common.gypi', 7 '../../../build/common.gypi',
8 ], 8 ],
9 'target_defaults': { 9 'target_defaults': {
10 'variables':{ 10 'variables':{
11 'target_base': 'none', 11 'target_base': 'none',
12 }, 12 },
13 'target_conditions': [ 13 'target_conditions': [
14 ['target_base=="weak_ref"', { 14 ['target_base=="weak_ref"', {
15 'sources': [ 15 'sources': [
16 'weak_ref.cc', 16 'weak_ref.cc',
17 'weak_ref.h', 17 'weak_ref.h',
18 'call_on_main_thread.h',
18 ], 19 ],
19 'xcode_settings': { 20 'xcode_settings': {
20 'WARNING_CFLAGS': [ 21 'WARNING_CFLAGS': [
21 '-Wno-missing-field-initializers' 22 '-Wno-missing-field-initializers'
22 ] 23 ]
23 }, 24 },
24 }, 25 },
25 ]], 26 ]],
26 }, 27 },
27 'conditions': [ 28 'conditions': [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 'type': 'static_library', # 'dynamic_library', ?!? 71 'type': 'static_library', # 'dynamic_library', ?!?
71 'variables': { 72 'variables': {
72 'target_base': 'weak_ref', 73 'target_base': 'weak_ref',
73 }, 74 },
74 'dependencies': [ 75 'dependencies': [
75 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', 76 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
76 ], 77 ],
77 }, 78 },
78 ], 79 ],
79 } 80 }
OLDNEW
« no previous file with comments | « src/trusted/weak_ref/weak_ref.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698