| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 }], # use_aura==1 | 329 }], # use_aura==1 |
| 330 # The test plugin relies on X11. | 330 # The test plugin relies on X11. |
| 331 ['OS=="linux" and use_x11==0', { | 331 ['OS=="linux" and use_x11==0', { |
| 332 'dependencies!': [ | 332 'dependencies!': [ |
| 333 'copy_test_netscape_plugin', | 333 'copy_test_netscape_plugin', |
| 334 ], | 334 ], |
| 335 }], | 335 }], |
| 336 ['chromeos==1', { | 336 ['chromeos==1', { |
| 337 'dependencies': [ | 337 'dependencies': [ |
| 338 '../chromeos/chromeos.gyp:chromeos', | 338 '../chromeos/chromeos.gyp:chromeos', |
| 339 '../ui/display/display.gyp:display', |
| 339 '../ui/wm/wm.gyp:wm_test_support', | 340 '../ui/wm/wm.gyp:wm_test_support', |
| 340 ], | 341 ], |
| 341 }], # chromeos==1 | 342 }], # chromeos==1 |
| 342 ['use_custom_freetype==1', { | 343 ['use_custom_freetype==1', { |
| 343 'dependencies': [ | 344 'dependencies': [ |
| 344 '../third_party/freetype2/freetype2.gyp:freetype2', | 345 '../third_party/freetype2/freetype2.gyp:freetype2', |
| 345 ], | 346 ], |
| 346 }], | 347 }], |
| 347 ['enable_plugins==0', { | 348 ['enable_plugins==0', { |
| 348 'sources!': [ | 349 'sources!': [ |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1052 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1053 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1053 '--destination_dir', '<(dest_dir)', | 1054 '--destination_dir', '<(dest_dir)', |
| 1054 ], | 1055 ], |
| 1055 }, | 1056 }, |
| 1056 ], | 1057 ], |
| 1057 }, | 1058 }, |
| 1058 ], | 1059 ], |
| 1059 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1060 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1060 ] | 1061 ] |
| 1061 } | 1062 } |
| OLD | NEW |