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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 'configurations': { | 368 'configurations': { |
369 'Debug_Base': { | 369 'Debug_Base': { |
370 'msvs_settings': { | 370 'msvs_settings': { |
371 'VCLinkerTool': { | 371 'VCLinkerTool': { |
372 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 372 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
373 }, | 373 }, |
374 }, | 374 }, |
375 }, | 375 }, |
376 }, | 376 }, |
377 }], # OS=="win" | 377 }], # OS=="win" |
378 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { | 378 ['OS == "win" or toolkit_uses_gtk == 1', { |
379 'dependencies': [ | 379 'dependencies': [ |
380 '../sandbox/sandbox.gyp:sandbox', | 380 '../sandbox/sandbox.gyp:sandbox', |
381 ], | 381 ], |
382 }], # OS=="win" or (toolkit_uses_gtk == 1 and selinux == 0) | 382 }], # OS=="win" or toolkit_uses_gtk == 1 |
383 ['toolkit_uses_gtk == 1', { | 383 ['toolkit_uses_gtk == 1', { |
384 'dependencies': [ | 384 'dependencies': [ |
385 '<(DEPTH)/build/linux/system.gyp:gtk', | 385 '<(DEPTH)/build/linux/system.gyp:gtk', |
386 ], | 386 ], |
387 }], # toolkit_uses_gtk | 387 }], # toolkit_uses_gtk |
388 ['OS=="mac"', { | 388 ['OS=="mac"', { |
389 'product_name': '<(content_shell_product_name)', | 389 'product_name': '<(content_shell_product_name)', |
390 'dependencies!': [ | 390 'dependencies!': [ |
391 'content_shell_lib', | 391 'content_shell_lib', |
392 ], | 392 ], |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
687 'native_lib_target': 'libcontent_shell_content_view', | 687 'native_lib_target': 'libcontent_shell_content_view', |
688 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], | 688 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
689 'asset_location': '<(ant_build_out)/content_shell/assets', | 689 'asset_location': '<(ant_build_out)/content_shell/assets', |
690 }, | 690 }, |
691 'includes': [ '../build/java_apk.gypi' ], | 691 'includes': [ '../build/java_apk.gypi' ], |
692 }, | 692 }, |
693 ], | 693 ], |
694 }], # OS=="android" | 694 }], # OS=="android" |
695 ] | 695 ] |
696 } | 696 } |
OLD | NEW |