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

Side by Side Diff: native_client_sdk/src/build_tools/make_simple.py

Issue 56413002: Fix spelling of "NaCl" in various places: "NaCL" is the wrong capitalisation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Undo translation change Created 7 years, 1 month 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/README ('k') | native_client_sdk/src/libraries/nacl_io/nacl_io.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 (c) 2012 Google Inc. All rights reserved. 1 # Copyright (c) 2012 Google Inc. 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 """This is a simplified Makefile generator for single-target gyp files. 5 """This is a simplified Makefile generator for single-target gyp files.
6 It was originally designed for generating readable Makefiles for the 6 It was originally designed for generating readable Makefiles for the
7 the NaCL examples. 7 the NaCl examples.
8 """ 8 """
9 9
10 # pylint: disable=C0301 10 # pylint: disable=C0301
11 11
12 import os 12 import os
13 import gyp.common 13 import gyp.common
14 from gyp.common import GetEnvironFallback 14 from gyp.common import GetEnvironFallback
15 from gyp.generator.make import QuoteIfNecessary 15 from gyp.generator.make import QuoteIfNecessary
16 16
17 generator_default_variables = { 17 generator_default_variables = {
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 WriteTarget(makefile, target_info) 294 WriteTarget(makefile, target_info)
295 295
296 makefile.write(''' 296 makefile.write('''
297 # include (if they exists) the .d dependency files that the compiler generates 297 # include (if they exists) the .d dependency files that the compiler generates
298 -include $(DEPFILES) 298 -include $(DEPFILES)
299 299
300 endif 300 endif
301 ''') 301 ''')
302 302
303 makefile.close() 303 makefile.close()
OLDNEW
« no previous file with comments | « mojo/README ('k') | native_client_sdk/src/libraries/nacl_io/nacl_io.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698