OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
8 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
10 # standard Chrome. | 10 # standard Chrome. |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 307 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
308 'msvs_disabled_warnings': [ 4267, ], | 308 'msvs_disabled_warnings': [ 4267, ], |
309 }], # OS=="win" | 309 }], # OS=="win" |
310 ['OS=="linux"', { | 310 ['OS=="linux"', { |
311 'dependencies': [ | 311 'dependencies': [ |
312 '../build/linux/system.gyp:fontconfig', | 312 '../build/linux/system.gyp:fontconfig', |
313 ], | 313 ], |
314 }], | 314 }], |
315 ['use_x11 == 1', { | 315 ['use_x11 == 1', { |
316 'dependencies': [ | 316 'dependencies': [ |
| 317 '../ui/events/devices/events_devices.gyp:events_devices', |
317 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 318 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
318 ], | 319 ], |
319 }], | 320 }], |
320 ['OS=="android"', { | 321 ['OS=="android"', { |
321 'dependencies': [ | 322 'dependencies': [ |
322 '../mojo/mojo_base.gyp:libmojo_system_java', | 323 '../mojo/mojo_base.gyp:libmojo_system_java', |
323 'content_shell_jni_headers', | 324 'content_shell_jni_headers', |
324 ], | 325 ], |
325 'dependencies!': [ | 326 'dependencies!': [ |
326 'copy_test_netscape_plugin', | 327 'copy_test_netscape_plugin', |
(...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1146 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1147 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1147 '--destination_dir', '<(dest_dir)', | 1148 '--destination_dir', '<(dest_dir)', |
1148 ], | 1149 ], |
1149 }, | 1150 }, |
1150 ], | 1151 ], |
1151 }, | 1152 }, |
1152 ], | 1153 ], |
1153 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1154 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1154 ] | 1155 ] |
1155 } | 1156 } |
OLD | NEW |