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

Side by Side Diff: trunk/test/variables/commands.gyp

Issue 306051: Add AUTHORS and LICENSE files, and copyright headers to relevant source files... (Closed) Base URL: http://gyp.googlecode.com/svn/
Patch Set: '' Created 11 years, 2 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) 2009 Google Inc. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
1 # This is a simple test file to make sure that variable substitution 5 # This is a simple test file to make sure that variable substitution
2 # happens correctly. Run "run_tests.py" using python to generate the 6 # happens correctly. Run "run_tests.py" using python to generate the
3 # output from this gyp file. 7 # output from this gyp file.
4 8
5 { 9 {
6 'variables': { 10 'variables': {
7 'pi': 'import math; print math.pi', 11 'pi': 'import math; print math.pi',
8 'third_letters': "<(other_letters)HIJK", 12 'third_letters': "<(other_letters)HIJK",
9 'letters_list': 'ABCD', 13 'letters_list': 'ABCD',
10 'other_letters': '<(letters_list)EFG', 14 'other_letters': '<(letters_list)EFG',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'action': [ 75 'action': [
72 'echo', 76 'echo',
73 '<(_inputs)', 77 '<(_inputs)',
74 '<(_outputs)', 78 '<(_outputs)',
75 ], 79 ],
76 }, 80 },
77 ], 81 ],
78 }, 82 },
79 ], 83 ],
80 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698