OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'type': 'shared_library', | 5 'type': 'shared_library', |
6 'android_unmangled_name': 1, | 6 'android_unmangled_name': 1, |
7 'dependencies': [ | 7 'dependencies': [ |
8 'android_webview_common', | 8 'android_webview_common', |
9 ], | 9 ], |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 # When not using the system skia there are linker warnings about | 42 # When not using the system skia there are linker warnings about |
43 # overriden hidden symbols which there's no easy way to eliminate; | 43 # overriden hidden symbols which there's no easy way to eliminate; |
44 # disable them. http://crbug.com/157326 | 44 # disable them. http://crbug.com/157326 |
45 'ldflags': [ | 45 'ldflags': [ |
46 '-Wl,--no-fatal-warnings', | 46 '-Wl,--no-fatal-warnings', |
47 ], | 47 ], |
48 'ldflags!': [ | 48 'ldflags!': [ |
49 '-Wl,--fatal-warnings', | 49 '-Wl,--fatal-warnings', |
50 ], | 50 ], |
51 }], | 51 }], |
52 ['android_webview_build==1 and use_system_stlport==1 and use_system_icu==0',
{ | 52 ['android_webview_build==1 and use_system_stlport==1', { |
53 # ICU requires RTTI, which is not present in the system's stlport, so | 53 # ICU requires RTTI, which is not present in the system's stlport, so |
54 # we have to include gabi++. We can't include it in icu.gyp because | 54 # we have to include gabi++. We can't include it in icu.gyp because |
55 # link_settings cannot be used inside target_conditions. This will be | 55 # link_settings cannot be used inside target_conditions. This will be |
56 # removed once we stop using the system stlport. | 56 # removed once we stop using the system stlport. |
57 # http://crbug.com/409851 | 57 # http://crbug.com/409851 |
58 'libraries': [ | 58 'libraries': [ |
59 '-lgabi++', | 59 '-lgabi++', |
60 ], | 60 ], |
61 }], | 61 }], |
62 ], | 62 ], |
63 'sources': [ | 63 'sources': [ |
64 'lib/main/webview_entry_point.cc', | 64 'lib/main/webview_entry_point.cc', |
65 ], | 65 ], |
66 } | 66 } |
67 | 67 |
OLD | NEW |