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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
8 | 8 |
9 source_set("browser") { | 9 source_set("browser") { |
10 # Only targets in the content tree can depend directly on this target. | 10 # Only targets in the content tree can depend directly on this target. |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 sources -= [ | 175 sources -= [ |
176 "device_sensors/data_fetcher_shared_memory_default.cc", | 176 "device_sensors/data_fetcher_shared_memory_default.cc", |
177 "geolocation/empty_wifi_data_provider.cc", | 177 "geolocation/empty_wifi_data_provider.cc", |
178 ] | 178 ] |
179 defines += [ | 179 defines += [ |
180 # This prevents the inclusion of atlhost.h which paired | 180 # This prevents the inclusion of atlhost.h which paired |
181 # with the windows 8 sdk it does the wrong thing. | 181 # with the windows 8 sdk it does the wrong thing. |
182 "__ATLHOST_H__", | 182 "__ATLHOST_H__", |
183 ] | 183 ] |
184 deps += [ | 184 deps += [ |
185 # TODO(GYP) | 185 "//third_party/iaccessible2", |
186 #"//third_party/iaccessible2", | 186 "//third_party/isimpledom", |
187 #"//third_party/isimpledom", | |
188 ] | 187 ] |
189 libs += [ | 188 libs += [ |
190 "comctl32.lib", | 189 "comctl32.lib", |
191 "dinput8.lib", | 190 "dinput8.lib", |
192 "dwmapi.lib", | 191 "dwmapi.lib", |
193 "dxguid.lib", | 192 "dxguid.lib", |
194 "sensorsapi.lib", | 193 "sensorsapi.lib", |
195 "portabledeviceguids.lib", | 194 "portabledeviceguids.lib", |
196 ] | 195 ] |
197 # TODI(GYP) | 196 # TODI(GYP) |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 sources -= [ | 362 sources -= [ |
364 "geolocation/empty_wifi_data_provider.cc", | 363 "geolocation/empty_wifi_data_provider.cc", |
365 ] | 364 ] |
366 deps += [ "//dbus" ] | 365 deps += [ "//dbus" ] |
367 } else { | 366 } else { |
368 # This will already have gotten removed for all non-Linux cases. | 367 # This will already have gotten removed for all non-Linux cases. |
369 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 368 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
370 } | 369 } |
371 } | 370 } |
372 } | 371 } |
OLD | NEW |