| 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 'content_shell_version': '99.77.34.5', | 8 'content_shell_version': '99.77.34.5', |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| 11 { | 11 { |
| 12 # GN version: //content/shell:content_shell_lib | 12 # GN version: //content/shell:content_shell_lib |
| 13 'target_name': 'content_shell_lib', | 13 'target_name': 'content_shell_lib', |
| 14 'type': 'static_library', | 14 'type': 'static_library', |
| 15 'defines': ['CONTENT_SHELL_VERSION="<(content_shell_version)"'], | 15 'defines': ['CONTENT_SHELL_VERSION="<(content_shell_version)"'], |
| 16 'variables': { | 16 'variables': { |
| 17 'chromium_code': 1, | 17 'chromium_code': 1, |
| 18 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out | 18 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out |
| 19 'clang_warning_flags': [ '-Wno-nonnull' ], | 19 'clang_warning_flags': [ '-Wno-nonnull' ], |
| 20 }, | 20 }, |
| 21 'dependencies': [ | 21 'dependencies': [ |
| 22 'app/resources/content_resources.gyp:content_resources', | 22 'app/resources/content_resources.gyp:content_resources', |
| 23 'app/strings/content_strings.gyp:content_strings', | 23 'app/strings/content_strings.gyp:content_strings', |
| 24 'content.gyp:content_app_both', | 24 'content.gyp:content_app_both', |
| 25 'content.gyp:content_browser', | 25 'content.gyp:content_browser', |
| 26 'content.gyp:content_common', | 26 'content.gyp:content_common', |
| 27 'content.gyp:content_gpu', | 27 'content.gyp:content_gpu', |
| 28 'content.gyp:content_plugin', | |
| 29 'content.gyp:content_ppapi_plugin', | 28 'content.gyp:content_ppapi_plugin', |
| 30 'content.gyp:content_renderer', | 29 'content.gyp:content_renderer', |
| 31 'content.gyp:content_resources', | 30 'content.gyp:content_resources', |
| 32 'content.gyp:content_utility', | 31 'content.gyp:content_utility', |
| 33 'content_shell_resources', | 32 'content_shell_resources', |
| 34 'content_shell_mojo_bindings', | 33 'content_shell_mojo_bindings', |
| 35 'content_test_mojo_bindings', | 34 'content_test_mojo_bindings', |
| 36 'copy_test_netscape_plugin', | 35 'copy_test_netscape_plugin', |
| 37 'layouttest_support_content', | 36 'layouttest_support_content', |
| 38 '../base/base.gyp:base', | 37 '../base/base.gyp:base', |
| (...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1000 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1002 '--destination_dir', '<(dest_dir)', | 1001 '--destination_dir', '<(dest_dir)', |
| 1003 ], | 1002 ], |
| 1004 }, | 1003 }, |
| 1005 ], | 1004 ], |
| 1006 }, | 1005 }, |
| 1007 ], | 1006 ], |
| 1008 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1007 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1009 ] | 1008 ] |
| 1010 } | 1009 } |
| OLD | NEW |