| 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. |
| 11 'content_shell_version': '19.77.34.5', | 11 'content_shell_version': '19.77.34.5', |
| 12 }, | 12 }, |
| 13 'targets': [ | 13 'targets': [ |
| 14 { | 14 { |
| 15 'target_name': 'content_shell_lib', | 15 'target_name': 'content_shell_lib', |
| 16 'type': 'static_library', | 16 'type': 'static_library', |
| 17 'defines!': ['CONTENT_IMPLEMENTATION'], | 17 'defines!': ['CONTENT_IMPLEMENTATION'], |
| 18 'defines': ['CONTENT_SHELL_VERSION="<(content_shell_version)"'], | 18 'defines': ['CONTENT_SHELL_VERSION="<(content_shell_version)"'], |
| 19 'variables': { | 19 'variables': { |
| 20 'chromium_code': 1, | 20 'chromium_code': 1, |
| 21 }, | 21 }, |
| 22 'dependencies': [ | 22 'dependencies': [ |
| 23 'content_app', | 23 'content_app', |
| 24 'content_browser', | 24 'content_browser', |
| 25 'content_common', | 25 'content_common', |
| 26 'content_gpu', | 26 'content_gpu', |
| 27 'content_layouttest_support', |
| 27 'content_plugin', | 28 'content_plugin', |
| 28 'content_ppapi_plugin', | 29 'content_ppapi_plugin', |
| 29 'content_renderer', | 30 'content_renderer', |
| 30 'content_shell_resources', | 31 'content_shell_resources', |
| 31 'content_utility', | 32 'content_utility', |
| 32 'content_worker', | 33 'content_worker', |
| 33 'content_resources.gyp:content_resources', | 34 'content_resources.gyp:content_resources', |
| 34 '../base/base.gyp:base', | 35 '../base/base.gyp:base', |
| 35 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 36 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 36 '../build/temp_gyp/googleurl.gyp:googleurl', | 37 '../build/temp_gyp/googleurl.gyp:googleurl', |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 'resource_dir': '../res', | 647 'resource_dir': '../res', |
| 647 'native_libs_paths': ['<(SHARED_LIB_DIR)/libcontent_shell_content_vi
ew.so'], | 648 'native_libs_paths': ['<(SHARED_LIB_DIR)/libcontent_shell_content_vi
ew.so'], |
| 648 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], | 649 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
| 649 }, | 650 }, |
| 650 'includes': [ '../build/java_apk.gypi' ], | 651 'includes': [ '../build/java_apk.gypi' ], |
| 651 }, | 652 }, |
| 652 ], | 653 ], |
| 653 }], # OS=="android" | 654 }], # OS=="android" |
| 654 ] | 655 ] |
| 655 } | 656 } |
| OLD | NEW |