OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |