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

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

Issue 23598011: Use icu_gyp_path variable to reference ICU gyp file (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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 | « src/d8.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 837 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 'V8_SHARED', 848 'V8_SHARED',
849 ], 849 ],
850 }], 850 }],
851 ['v8_postmortem_support=="true"', { 851 ['v8_postmortem_support=="true"', {
852 'sources': [ 852 'sources': [
853 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', 853 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
854 ] 854 ]
855 }], 855 }],
856 ['v8_enable_i18n_support==1', { 856 ['v8_enable_i18n_support==1', {
857 'dependencies': [ 857 'dependencies': [
858 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 858 '<(icu_gyp_path):icui18n',
859 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 859 '<(icu_gyp_path):icuuc',
860 ] 860 ]
861 }, { # v8_enable_i18n_support==0 861 }, { # v8_enable_i18n_support==0
862 'sources!': [ 862 'sources!': [
863 '../../src/i18n.cc', 863 '../../src/i18n.cc',
864 '../../src/i18n.h', 864 '../../src/i18n.h',
865 ], 865 ],
866 }], 866 }],
867 ['OS=="win" and v8_enable_i18n_support==1', { 867 ['OS=="win" and v8_enable_i18n_support==1', {
868 'dependencies': [ 868 'dependencies': [
869 '<(DEPTH)/third_party/icu/icu.gyp:icudata', 869 '<(icu_gyp_path):icudata',
870 ], 870 ],
871 }], 871 }],
872 ], 872 ],
873 }, 873 },
874 { 874 {
875 'target_name': 'js2c', 875 'target_name': 'js2c',
876 'type': 'none', 876 'type': 'none',
877 'conditions': [ 877 'conditions': [
878 ['want_separate_host_toolset==1', { 878 ['want_separate_host_toolset==1', {
879 'toolsets': ['host'], 879 'toolsets': ['host'],
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1040 }], 1040 }],
1041 ['v8_compress_startup_data=="bz2"', { 1041 ['v8_compress_startup_data=="bz2"', {
1042 'libraries': [ 1042 'libraries': [
1043 '-lbz2', 1043 '-lbz2',
1044 ] 1044 ]
1045 }], 1045 }],
1046 ], 1046 ],
1047 }, 1047 },
1048 ], 1048 ],
1049 } 1049 }
OLDNEW
« no previous file with comments | « src/d8.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698