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

Side by Side Diff: src/extensions/experimental/experimental.gyp

Issue 6928017: Trying to re-land http://codereview.chromium.org/6901141. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Fixed Jungshik's comments Created 9 years, 7 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/extensions/experimental/i18n.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 project authors. All rights reserved. 1 # Copyright 2011 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 27 matching lines...) Expand all
38 'type': 'static_library', 38 'type': 'static_library',
39 'sources': [ 39 'sources': [
40 'break-iterator.cc', 40 'break-iterator.cc',
41 'break-iterator.h', 41 'break-iterator.h',
42 'collator.cc', 42 'collator.cc',
43 'collator.h', 43 'collator.h',
44 'i18n-extension.cc', 44 'i18n-extension.cc',
45 'i18n-extension.h', 45 'i18n-extension.h',
46 'i18n-locale.cc', 46 'i18n-locale.cc',
47 'i18n-locale.h', 47 'i18n-locale.h',
48 'i18n-utils.cc',
49 'i18n-utils.h',
50 'language-matcher.cc',
51 'language-matcher.h',
48 '<(SHARED_INTERMEDIATE_DIR)/i18n-js.cc', 52 '<(SHARED_INTERMEDIATE_DIR)/i18n-js.cc',
49 ], 53 ],
50 'include_dirs': [ 54 'include_dirs': [
51 '<(icu_src_dir)/public/common', 55 '<(icu_src_dir)/public/common',
52 '../..', 56 '../..',
53 ], 57 ],
54 'dependencies': [ 58 'dependencies': [
55 '<(icu_src_dir)/icu.gyp:*', 59 '<(icu_src_dir)/icu.gyp:*',
56 'js2c_i18n#host', 60 'js2c_i18n#host',
57 '../../../tools/gyp/v8.gyp:v8', 61 '../../../tools/gyp/v8.gyp:v8',
(...skipping 23 matching lines...) Expand all
81 '../../../tools/js2c.py', 85 '../../../tools/js2c.py',
82 '<@(_outputs)', 86 '<@(_outputs)',
83 'I18N', 87 'I18N',
84 '<@(library_files)' 88 '<@(library_files)'
85 ], 89 ],
86 }, 90 },
87 ], 91 ],
88 }, 92 },
89 ], # targets 93 ], # targets
90 } 94 }
OLDNEW
« no previous file with comments | « no previous file | src/extensions/experimental/i18n.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698