Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(883)

Side by Side Diff: build/all.gyp

Issue 6591072: Implementing String, Number and Date toLocaleXXXString overrides as per ECMA 402, Chapter 13. Small… (Closed) Base URL: http://v8-i18n.googlecode.com/svn/trunk/
Patch Set: Fixed indentation in overrides.js. Created 11 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/date-format.js » ('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 2011 the v8-i18n authors. 1 # Copyright 2011 the v8-i18n authors.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'variables': { 65 'variables': {
66 'js_files': [ 66 'js_files': [
67 '../src/header.js', 67 '../src/header.js',
68 '../src/globals.js', 68 '../src/globals.js',
69 '../src/locale.js', 69 '../src/locale.js',
70 '../src/collator.js', 70 '../src/collator.js',
71 '../src/number-format.js', 71 '../src/number-format.js',
72 '../src/date-format.js', 72 '../src/date-format.js',
73 '../src/break-iterator.js', 73 '../src/break-iterator.js',
74 '../src/utils.js', 74 '../src/utils.js',
75 '../src/overrides.js',
75 '../src/footer.js' 76 '../src/footer.js'
76 ], 77 ],
77 }, 78 },
78 'actions': [ 79 'actions': [
79 { 80 {
80 'action_name': 'api2c', 81 'action_name': 'api2c',
81 'inputs': [ 82 'inputs': [
82 '../tools/js2c.py', 83 '../tools/js2c.py',
83 '<@(js_files)', 84 '<@(js_files)',
84 ], 85 ],
85 'outputs': [ 86 'outputs': [
86 '<(SHARED_INTERMEDIATE_DIR)/v8-i18n-js.cc', 87 '<(SHARED_INTERMEDIATE_DIR)/v8-i18n-js.cc',
87 # Helps debugging when v8 complains about exact line number. 88 # Helps debugging when v8 complains about exact line number.
88 # Don't want to put it in ../src because build bots may have src 89 # Don't want to put it in ../src because build bots may have src
89 # as read-only. 90 # as read-only.
90 '<(SHARED_INTERMEDIATE_DIR)/combined.js' 91 '<(SHARED_INTERMEDIATE_DIR)/combined.js'
91 ], 92 ],
92 'action': [ 93 'action': [
93 'python', 94 'python',
94 '../tools/js2c.py', 95 '../tools/js2c.py',
95 '<@(_outputs)', 96 '<@(_outputs)',
96 '<@(js_files)' 97 '<@(js_files)'
97 ], 98 ],
98 }, 99 },
99 ], 100 ],
100 }, 101 },
101 ], # targets 102 ], # targets
102 } 103 }
OLDNEW
« no previous file with comments | « no previous file | src/date-format.js » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b