| 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 'conditions': [ | 7 'conditions': [ |
| 8 ['chromeos==1', { | 8 ['chromeos==1', { |
| 9 'use_libgps%': 1, | 9 'use_libgps%': 1, |
| 10 }, { # chromeos==0 | 10 }, { # chromeos==0 |
| (...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 'dependencies': [ | 1030 'dependencies': [ |
| 1031 '../build/linux/system.gyp:dbus', | 1031 '../build/linux/system.gyp:dbus', |
| 1032 '../build/linux/system.gyp:fontconfig', | 1032 '../build/linux/system.gyp:fontconfig', |
| 1033 '../build/linux/system.gyp:x11', | 1033 '../build/linux/system.gyp:x11', |
| 1034 '../dbus/dbus.gyp:dbus', | 1034 '../dbus/dbus.gyp:dbus', |
| 1035 ], | 1035 ], |
| 1036 }], | 1036 }], |
| 1037 ['OS=="android"', { | 1037 ['OS=="android"', { |
| 1038 'dependencies': [ | 1038 'dependencies': [ |
| 1039 '../media/media.gyp:media', | 1039 '../media/media.gyp:media', |
| 1040 '../webkit/compositor_bindings/compositor_bindings.gyp:webkit_compositor
_support', | |
| 1041 'content.gyp:content_jni_headers', | 1040 'content.gyp:content_jni_headers', |
| 1042 ], | 1041 ], |
| 1043 'link_settings': { | 1042 'link_settings': { |
| 1044 'libraries': [ | 1043 'libraries': [ |
| 1045 '-ljnigraphics', | 1044 '-ljnigraphics', |
| 1046 ], | 1045 ], |
| 1047 }, | 1046 }, |
| 1048 'include_dirs': [ | 1047 'include_dirs': [ |
| 1049 '<(SHARED_INTERMEDIATE_DIR)/content', | 1048 '<(SHARED_INTERMEDIATE_DIR)/content', |
| 1050 ], | 1049 ], |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1172 # the USE_LIBGPS setting propagates to the "real" dependent target, | 1171 # the USE_LIBGPS setting propagates to the "real" dependent target, |
| 1173 # we use all_dependent_settings here. | 1172 # we use all_dependent_settings here. |
| 1174 'all_dependent_settings': { | 1173 'all_dependent_settings': { |
| 1175 'defines': [ | 1174 'defines': [ |
| 1176 'USE_LIBGPS', | 1175 'USE_LIBGPS', |
| 1177 ], | 1176 ], |
| 1178 }, | 1177 }, |
| 1179 }], | 1178 }], |
| 1180 ], | 1179 ], |
| 1181 } | 1180 } |
| OLD | NEW |