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

Side by Side Diff: tools/gyp/v8.gyp

Issue 638643002: Update unicode to 7.0.0. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comment Created 6 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
« no previous file with comments | « test/unittests/unittests.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 '../../src/types-inl.h', 801 '../../src/types-inl.h',
802 '../../src/types.cc', 802 '../../src/types.cc',
803 '../../src/types.h', 803 '../../src/types.h',
804 '../../src/typing.cc', 804 '../../src/typing.cc',
805 '../../src/typing.h', 805 '../../src/typing.h',
806 '../../src/unbound-queue-inl.h', 806 '../../src/unbound-queue-inl.h',
807 '../../src/unbound-queue.h', 807 '../../src/unbound-queue.h',
808 '../../src/unicode-inl.h', 808 '../../src/unicode-inl.h',
809 '../../src/unicode.cc', 809 '../../src/unicode.cc',
810 '../../src/unicode.h', 810 '../../src/unicode.h',
811 '../../src/unicode-decoder.cc',
812 '../../src/unicode-decoder.h',
811 '../../src/unique.h', 813 '../../src/unique.h',
812 '../../src/uri.h', 814 '../../src/uri.h',
813 '../../src/utils-inl.h', 815 '../../src/utils-inl.h',
814 '../../src/utils.cc', 816 '../../src/utils.cc',
815 '../../src/utils.h', 817 '../../src/utils.h',
816 '../../src/v8.cc', 818 '../../src/v8.cc',
817 '../../src/v8.h', 819 '../../src/v8.h',
818 '../../src/v8memory.h', 820 '../../src/v8memory.h',
819 '../../src/v8threads.cc', 821 '../../src/v8threads.cc',
820 '../../src/v8threads.h', 822 '../../src/v8threads.h',
(...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after
1687 'target_name': 'mksnapshot', 1689 'target_name': 'mksnapshot',
1688 'type': 'executable', 1690 'type': 'executable',
1689 'dependencies': ['v8_base', 'v8_nosnapshot', 'v8_libplatform'], 1691 'dependencies': ['v8_base', 'v8_nosnapshot', 'v8_libplatform'],
1690 'include_dirs+': [ 1692 'include_dirs+': [
1691 '../..', 1693 '../..',
1692 ], 1694 ],
1693 'sources': [ 1695 'sources': [
1694 '../../src/mksnapshot.cc', 1696 '../../src/mksnapshot.cc',
1695 ], 1697 ],
1696 'conditions': [ 1698 'conditions': [
1699 ['v8_enable_i18n_support==1', {
1700 'dependencies': [
1701 '<(icu_gyp_path):icui18n',
1702 '<(icu_gyp_path):icuuc',
1703 ]
1704 }],
1697 ['want_separate_host_toolset==1', { 1705 ['want_separate_host_toolset==1', {
1698 'toolsets': ['host'], 1706 'toolsets': ['host'],
1699 }, { 1707 }, {
1700 'toolsets': ['target'], 1708 'toolsets': ['target'],
1701 }], 1709 }],
1702 ['v8_compress_startup_data=="bz2"', { 1710 ['v8_compress_startup_data=="bz2"', {
1703 'libraries': [ 1711 'libraries': [
1704 '-lbz2', 1712 '-lbz2',
1705 ] 1713 ]
1706 }], 1714 }],
1707 ], 1715 ],
1708 }, 1716 },
1709 ], 1717 ],
1710 } 1718 }
OLDNEW
« no previous file with comments | « test/unittests/unittests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698