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 950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
961 'browser/renderer_host/p2p/socket_host_udp.h', | 961 'browser/renderer_host/p2p/socket_host_udp.h', |
962 'browser/renderer_host/p2p/socket_dispatcher_host.cc', | 962 'browser/renderer_host/p2p/socket_dispatcher_host.cc', |
963 'browser/renderer_host/p2p/socket_dispatcher_host.h', | 963 'browser/renderer_host/p2p/socket_dispatcher_host.h', |
964 ], | 964 ], |
965 }], | 965 }], |
966 ['OS=="win"', { | 966 ['OS=="win"', { |
967 'dependencies': [ | 967 'dependencies': [ |
968 # For accessibility | 968 # For accessibility |
969 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', | 969 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', |
970 '../third_party/isimpledom/isimpledom.gyp:isimpledom', | 970 '../third_party/isimpledom/isimpledom.gyp:isimpledom', |
| 971 '../win8/win8.gyp:win8_util', |
971 ], | 972 ], |
972 'defines': [ | 973 'defines': [ |
973 # This prevents the inclusion of atlhost.h which paired | 974 # This prevents the inclusion of atlhost.h which paired |
974 # with the windows 8 sdk it does the wrong thing. | 975 # with the windows 8 sdk it does the wrong thing. |
975 '__ATLHOST_H__', | 976 '__ATLHOST_H__', |
976 ], | 977 ], |
977 'link_settings': { | 978 'link_settings': { |
978 'libraries': [ | 979 'libraries': [ |
979 '-lcomctl32.lib', | 980 '-lcomctl32.lib', |
980 '-llocationapi.lib', | 981 '-llocationapi.lib', |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1146 # the USE_LIBGPS setting propagates to the "real" dependent target, | 1147 # the USE_LIBGPS setting propagates to the "real" dependent target, |
1147 # we use all_dependent_settings here. | 1148 # we use all_dependent_settings here. |
1148 'all_dependent_settings': { | 1149 'all_dependent_settings': { |
1149 'defines': [ | 1150 'defines': [ |
1150 'USE_LIBGPS', | 1151 'USE_LIBGPS', |
1151 ], | 1152 ], |
1152 }, | 1153 }, |
1153 }], | 1154 }], |
1154 ], | 1155 ], |
1155 } | 1156 } |
OLD | NEW |