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

Side by Side Diff: native_client_sdk/src/build_tools/library.mk

Issue 13106002: [NaCl SDK] A bunch of spelling fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix presubmit Created 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # GNU Make based build file. For details on GNU Make see: 6 # GNU Make based build file. For details on GNU Make see:
7 # http://www.gnu.org/software/make/manual/make.html 7 # http://www.gnu.org/software/make/manual/make.html
8 # 8 #
9 # 9 #
10 10
11 # Default configuration 11 # Default configuration
12 # 12 #
13 # By default we will build a Debug configuration using the GCC newlib toolcahin 13 # By default we will build a Debug configuration using the GCC newlib toolchain
14 # to override this, specify TOOLCHAIN=newlib|glibc or CONFIG=Debug|Release on 14 # to override this, specify TOOLCHAIN=newlib|glibc or CONFIG=Debug|Release on
15 # the make command-line or in this file prior to including common.mk. The 15 # the make command-line or in this file prior to including common.mk. The
16 # toolchain we use by default will be the first valid one listed 16 # toolchain we use by default will be the first valid one listed
17 VALID_TOOLCHAINS:={{' '.join(tools)}} 17 VALID_TOOLCHAINS:={{' '.join(tools)}}
18 18
19 19
20 [[# Only one target is allowed in a library project]] 20 [[# Only one target is allowed in a library project]]
21 [[target = targets[0] ]] 21 [[target = targets[0] ]]
22 [[name = target['NAME'] ]] 22 [[name = target['NAME'] ]]
23 [[flags = ' '.join(target.get('CCFLAGS', []))]] 23 [[flags = ' '.join(target.get('CCFLAGS', []))]]
(...skipping 30 matching lines...) Expand all
54 54
55 # 55 #
56 # Use the compile macro for each source. 56 # Use the compile macro for each source.
57 # 57 #
58 $(foreach src,$(SOURCES),$(eval $(call COMPILE_RULE,$(src),{{flags}}))) 58 $(foreach src,$(SOURCES),$(eval $(call COMPILE_RULE,$(src),{{flags}})))
59 59
60 # 60 #
61 # Use the lib macro for this target on the list of sources. 61 # Use the lib macro for this target on the list of sources.
62 # 62 #
63 $(eval $(call LIB_RULE,{{name}},$(SOURCES))) 63 $(eval $(call LIB_RULE,{{name}},$(SOURCES)))
OLDNEW
« no previous file with comments | « native_client_sdk/src/build_tools/generate_make.py ('k') | native_client_sdk/src/build_tools/make_simple.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698