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

Side by Side Diff: samples/samples.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 | « build/standalone.gypi ('k') | src/d8.gyp » ('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 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 24 matching lines...) Expand all
35 'type': 'executable', 35 'type': 'executable',
36 'dependencies': [ 36 'dependencies': [
37 '../tools/gyp/v8.gyp:v8', 37 '../tools/gyp/v8.gyp:v8',
38 ], 38 ],
39 'include_dirs': [ 39 'include_dirs': [
40 '../include', 40 '../include',
41 ], 41 ],
42 'conditions': [ 42 'conditions': [
43 ['v8_enable_i18n_support==1', { 43 ['v8_enable_i18n_support==1', {
44 'dependencies': [ 44 'dependencies': [
45 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 45 '<(icu_gyp_path):icui18n',
46 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 46 '<(icu_gyp_path):icuuc',
47 ], 47 ],
48 }], 48 }],
49 ['OS=="win" and v8_enable_i18n_support==1', { 49 ['OS=="win" and v8_enable_i18n_support==1', {
50 'dependencies': [ 50 'dependencies': [
51 '<(DEPTH)/third_party/icu/icu.gyp:icudata', 51 '<(icu_gyp_path):icudata',
52 ], 52 ],
53 }], 53 }],
54 ], 54 ],
55 }, 55 },
56 'targets': [ 56 'targets': [
57 { 57 {
58 'target_name': 'shell', 58 'target_name': 'shell',
59 'sources': [ 59 'sources': [
60 'shell.cc', 60 'shell.cc',
61 ], 61 ],
62 }, 62 },
63 { 63 {
64 'target_name': 'process', 64 'target_name': 'process',
65 'sources': [ 65 'sources': [
66 'process.cc', 66 'process.cc',
67 ], 67 ],
68 }, 68 },
69 { 69 {
70 'target_name': 'lineprocessor', 70 'target_name': 'lineprocessor',
71 'sources': [ 71 'sources': [
72 'lineprocessor.cc', 72 'lineprocessor.cc',
73 ], 73 ],
74 } 74 }
75 ], 75 ],
76 } 76 }
OLDNEW
« no previous file with comments | « build/standalone.gypi ('k') | src/d8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698