OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'includes': [ | 8 'includes': [ |
9 'android_webview_tests.gypi', | 9 'android_webview_tests.gypi', |
10 ], | 10 ], |
(...skipping 11 matching lines...) Expand all Loading... |
22 ], | 22 ], |
23 'sources': [ | 23 'sources': [ |
24 'lib/main/webview_entry_point.cc', | 24 'lib/main/webview_entry_point.cc', |
25 ], | 25 ], |
26 'conditions': [ | 26 'conditions': [ |
27 ['android_webview_build == 1', { | 27 ['android_webview_build == 1', { |
28 'libraries': [ | 28 'libraries': [ |
29 # The "android" gyp backend doesn't quite handle static libraries' | 29 # The "android" gyp backend doesn't quite handle static libraries' |
30 # dependencies correctly; force this to be linked as a workaround. | 30 # dependencies correctly; force this to be linked as a workaround. |
31 'cpufeatures.a', | 31 'cpufeatures.a', |
| 32 '-lcutils', |
32 ], | 33 ], |
33 }], | 34 }], |
34 ], | 35 ], |
35 }, | 36 }, |
36 { | 37 { |
37 'target_name': 'android_webview_pak', | 38 'target_name': 'android_webview_pak', |
38 'type': 'none', | 39 'type': 'none', |
39 'dependencies': [ | 40 'dependencies': [ |
40 '<(DEPTH)/content/browser/devtools/devtools_resources.gyp:devtools_resou
rces', | 41 '<(DEPTH)/content/browser/devtools/devtools_resources.gyp:devtools_resou
rces', |
41 '<(DEPTH)/content/content_resources.gyp:content_resources', | 42 '<(DEPTH)/content/content_resources.gyp:content_resources', |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 '../content/content.gyp:content_java', | 189 '../content/content.gyp:content_java', |
189 '../ui/ui.gyp:ui_java', | 190 '../ui/ui.gyp:ui_java', |
190 ], | 191 ], |
191 'variables': { | 192 'variables': { |
192 'java_in_dir': '../android_webview/java', | 193 'java_in_dir': '../android_webview/java', |
193 }, | 194 }, |
194 'includes': [ '../build/java.gypi' ], | 195 'includes': [ '../build/java.gypi' ], |
195 }, | 196 }, |
196 ], | 197 ], |
197 } | 198 } |
OLD | NEW |