| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 "dragdrop/os_exchange_data_provider_aura.h", | 417 "dragdrop/os_exchange_data_provider_aura.h", |
| 418 ] | 418 ] |
| 419 } | 419 } |
| 420 | 420 |
| 421 libs = [] | 421 libs = [] |
| 422 if (is_win) { | 422 if (is_win) { |
| 423 sources += [ | 423 sources += [ |
| 424 "cursor/cursor_loader_win.cc", | 424 "cursor/cursor_loader_win.cc", |
| 425 "cursor/cursor_loader_win.h", | 425 "cursor/cursor_loader_win.h", |
| 426 ] | 426 ] |
| 427 deps += [ | |
| 428 "//third_party/wtl", | |
| 429 ] | |
| 430 cflags = [ | 427 cflags = [ |
| 431 "/wd4267", # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int. | 428 "/wd4267", # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int. |
| 432 "/wd4324", # Structure was padded due to __declspec(align()), which is | 429 "/wd4324", # Structure was padded due to __declspec(align()), which is |
| 433 # uninteresting. | 430 # uninteresting. |
| 434 ] | 431 ] |
| 435 ldflags = [ | 432 ldflags = [ |
| 436 "/DELAYLOAD:d2d1.dll", | 433 "/DELAYLOAD:d2d1.dll", |
| 437 "/DELAYLOAD:d3d10_1.dll", | 434 "/DELAYLOAD:d3d10_1.dll", |
| 438 "/DELAYLOAD:dwmapi.dll", | 435 "/DELAYLOAD:dwmapi.dll", |
| 439 ] | 436 ] |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 "//chromeos", | 792 "//chromeos", |
| 796 "//ui/aura:test_support", | 793 "//ui/aura:test_support", |
| 797 "//ui/events:gesture_detection", | 794 "//ui/events:gesture_detection", |
| 798 "//ui/chromeos:ui_chromeos", | 795 "//ui/chromeos:ui_chromeos", |
| 799 ] | 796 ] |
| 800 } | 797 } |
| 801 } | 798 } |
| 802 } | 799 } |
| 803 } | 800 } |
| 804 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 801 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
| OLD | NEW |