OLD | NEW |
---|---|
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'conditions': [ | 5 'conditions': [ |
6 ['OS=="linux"', { | 6 ['OS=="linux"', { |
7 'variables': { | 7 'variables': { |
8 'files': [ | 8 'files': [ |
9 '<(PRODUCT_DIR)/libffmpegsumo.so', | 9 '<(PRODUCT_DIR)/libffmpegsumo.so', |
10 '<(PRODUCT_DIR)/libosmesa.so', | 10 '<(PRODUCT_DIR)/libosmesa.so', |
11 ], | 11 ], |
12 }, | 12 }, |
13 }], | 13 }], |
14 ['disable_nacl==0 and OS=="linux"', { | 14 ['disable_nacl==0 and OS=="linux"', { |
15 'variables': { | 15 'variables': { |
16 'files': [ | 16 'files': [ |
17 '<(PRODUCT_DIR)/nacl_helper<(EXECUTABLE_SUFFIX)', | 17 '<(PRODUCT_DIR)/nacl_helper<(EXECUTABLE_SUFFIX)', |
18 '<(PRODUCT_DIR)/nacl_helper_bootstrap<(EXECUTABLE_SUFFIX)', | 18 '<(PRODUCT_DIR)/nacl_helper_bootstrap<(EXECUTABLE_SUFFIX)', |
19 ] | 19 ] |
20 } | 20 } |
21 }], | 21 }], |
22 # TODO(hidehiko,mazda): Include nacl_helper_nonsfi for ARM when supported. | |
23 ['disable_nacl==0 and OS=="linux" and (target_arch=="x64" or target_arch=="i a32")', { | |
csharp
2014/11/14 14:19:59
Please break into two lines
hidehiko
2014/11/14 18:45:32
Done.
| |
24 'variables': { | |
25 'files': [ | |
26 '<(PRODUCT_DIR)/nacl_helper_nonsfi<(EXECUTABLE_SUFFIX)', | |
27 ] | |
28 } | |
29 }], | |
22 ['OS=="linux" or OS=="mac" or OS=="win"', { | 30 ['OS=="linux" or OS=="mac" or OS=="win"', { |
23 'variables': { | 31 'variables': { |
24 'files': [ | 32 'files': [ |
25 '<(PRODUCT_DIR)/resources.pak', | 33 '<(PRODUCT_DIR)/resources.pak', |
26 ], | 34 ], |
27 }, | 35 }, |
28 }], | 36 }], |
29 ['OS=="linux" or OS=="win"', { | 37 ['OS=="linux" or OS=="win"', { |
30 'variables': { | 38 'variables': { |
31 'command': [ | 39 'command': [ |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
103 '<(PRODUCT_DIR)/chrome_child.dll', | 111 '<(PRODUCT_DIR)/chrome_child.dll', |
104 ], | 112 ], |
105 }, | 113 }, |
106 }], | 114 }], |
107 ], | 115 ], |
108 'includes': [ | 116 'includes': [ |
109 'angle.isolate', | 117 'angle.isolate', |
110 '../gin/v8.isolate', | 118 '../gin/v8.isolate', |
111 ], | 119 ], |
112 } | 120 } |
OLD | NEW |