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

Side by Side Diff: samples/samples.gyp

Issue 1962253002: Rename shell to v8_shell (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 4 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
« no previous file with comments | « BUILD.gn ('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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 }], 50 }],
51 ['OS=="win" and v8_enable_i18n_support==1', { 51 ['OS=="win" and v8_enable_i18n_support==1', {
52 'dependencies': [ 52 'dependencies': [
53 '<(icu_gyp_path):icudata', 53 '<(icu_gyp_path):icudata',
54 ], 54 ],
55 }], 55 }],
56 ], 56 ],
57 }, 57 },
58 'targets': [ 58 'targets': [
59 { 59 {
60 'target_name': 'shell', 60 'target_name': 'v8_shell',
61 'sources': [ 61 'sources': [
62 'shell.cc', 62 'shell.cc',
63 ], 63 ],
64 'conditions': [ 64 'conditions': [
65 [ 'want_separate_host_toolset==1', { 65 [ 'want_separate_host_toolset==1', {
66 'toolsets': [ '<(v8_toolset_for_shell)', ], 66 'toolsets': [ '<(v8_toolset_for_shell)', ],
67 }], 67 }],
68 ], 68 ],
69 }, 69 },
70 { 70 {
71 'target_name': 'hello-world', 71 'target_name': 'hello-world',
72 'sources': [ 72 'sources': [
73 'hello-world.cc', 73 'hello-world.cc',
74 ], 74 ],
75 }, 75 },
76 { 76 {
77 'target_name': 'process', 77 'target_name': 'process',
78 'sources': [ 78 'sources': [
79 'process.cc', 79 'process.cc',
80 ], 80 ],
81 }, 81 },
82 ], 82 ],
83 } 83 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698