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

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

Issue 7799028: Remove src/trusted/plugin (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: fix gyp file for necessary -I Created 9 years, 3 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 | « no previous file | src/trusted/plugin/arch_arm/sandbox_isa.cc » ('j') | 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 # 2 #
3 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 3 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 # 6 #
7 7
8 # TODO(sehr): remove need for the warning flag removals below 8 # TODO(sehr): remove need for the warning flag removals below
9 { 9 {
10 'includes': [ 10 'includes': [
11 # NOTE: this file also defines common dependencies. 11 # NOTE: this file also defines common dependencies.
12 'nonnacl_util.gypi', 12 'nonnacl_util.gypi',
13 ], 13 ],
14 'target_defaults': { 14 'target_defaults': {
15 'variables': { 15 'variables': {
16 'target_base': 'none', 16 'target_base': 'none',
17 }, 17 },
18 'include_dirs': [
19 '<(DEPTH)/ppapi',
20 ],
18 'target_conditions': [ 21 'target_conditions': [
19 ['target_base=="sel_ldr_launcher"', { 22 ['target_base=="sel_ldr_launcher"', {
20 'sources': [ 23 'sources': [
21 'sel_ldr_launcher.cc', 24 'sel_ldr_launcher.cc',
22 'sel_ldr_launcher.h', 25 'sel_ldr_launcher.h',
23 'sel_ldr_launcher_chrome.cc', 26 'sel_ldr_launcher_chrome.cc',
24 ], 27 ],
25 'cflags!': [ 28 'cflags!': [
26 '-Wextra', 29 '-Wextra',
27 ], 30 ],
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 # env.Append( 153 # env.Append(
151 # CCFLAGS=['-fPIC'], 154 # CCFLAGS=['-fPIC'],
152 # ) 155 # )
153 #if env.Bit('mac'): 156 #if env.Bit('mac'):
154 # # there are some issue with compiling ".mm" files 157 # # there are some issue with compiling ".mm" files
155 # env.FilterOut(CCFLAGS=['-pedantic']) 158 # env.FilterOut(CCFLAGS=['-pedantic'])
156 #if env.Bit('windows'): 159 #if env.Bit('windows'):
157 # env.Append( 160 # env.Append(
158 # CPPDEFINES = ['XP_WIN', 'WIN32', '_WINDOWS'], 161 # CPPDEFINES = ['XP_WIN', 'WIN32', '_WINDOWS'],
159 # ) 162 # )
OLDNEW
« no previous file with comments | « no previous file | src/trusted/plugin/arch_arm/sandbox_isa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698