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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 'configurations': { | 147 'configurations': { |
148 'Debug_Base': { | 148 'Debug_Base': { |
149 'msvs_settings': { | 149 'msvs_settings': { |
150 'VCLinkerTool': { | 150 'VCLinkerTool': { |
151 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 151 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
152 }, | 152 }, |
153 }, | 153 }, |
154 }, | 154 }, |
155 }, | 155 }, |
156 }], # OS=="win" | 156 }], # OS=="win" |
| 157 ['OS=="linux"', { |
| 158 'dependencies': [ |
| 159 '../build/linux/system.gyp:fontconfig', |
| 160 ], |
| 161 }], |
157 ['OS=="android"', { | 162 ['OS=="android"', { |
158 'dependencies': [ | 163 'dependencies': [ |
159 'content_shell_jni_headers', | 164 'content_shell_jni_headers', |
160 ], | 165 ], |
161 'include_dirs': [ | 166 'include_dirs': [ |
162 '<(SHARED_INTERMEDIATE_DIR)/content/shell', | 167 '<(SHARED_INTERMEDIATE_DIR)/content/shell', |
163 ], | 168 ], |
164 }, { # else: OS!="android" | 169 }, { # else: OS!="android" |
165 'dependencies': [ | 170 'dependencies': [ |
166 # This dependency is for running DRT against the content shell, and | 171 # This dependency is for running DRT against the content shell, and |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 'resource_dir': '../res', | 651 'resource_dir': '../res', |
647 'native_libs_paths': ['<(SHARED_LIB_DIR)/libcontent_shell_content_vi
ew.so'], | 652 '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'], | 653 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
649 }, | 654 }, |
650 'includes': [ '../build/java_apk.gypi' ], | 655 'includes': [ '../build/java_apk.gypi' ], |
651 }, | 656 }, |
652 ], | 657 ], |
653 }], # OS=="android" | 658 }], # OS=="android" |
654 ] | 659 ] |
655 } | 660 } |
OLD | NEW |