| 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("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 gypi_values = exec_script("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 10 [ rebase_path("views.gyp") ], | 10 [ rebase_path("views.gyp") ], |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "linux_ui/status_icon_linux.h", | 78 "linux_ui/status_icon_linux.h", |
| 79 ] | 79 ] |
| 80 } | 80 } |
| 81 | 81 |
| 82 if (is_win) { | 82 if (is_win) { |
| 83 sources += gypi_values.views_win_sources | 83 sources += gypi_values.views_win_sources |
| 84 libs = [ | 84 libs = [ |
| 85 "dwmapi.lib", | 85 "dwmapi.lib", |
| 86 "imm32.lib", | 86 "imm32.lib", |
| 87 "oleacc.lib", | 87 "oleacc.lib", |
| 88 "wtsapi32.lib", |
| 88 ] | 89 ] |
| 89 ldflags = [ "/DELAYLOAD:user32.dll" ] | 90 ldflags = [ "/DELAYLOAD:user32.dll" ] |
| 90 deps += [ | 91 deps += [ |
| 91 "//third_party/iaccessible2", | 92 "//third_party/iaccessible2", |
| 92 "//third_party/wtl", | 93 "//third_party/wtl", |
| 93 ] | 94 ] |
| 94 } | 95 } |
| 95 | 96 |
| 96 if (use_ozone) { | 97 if (use_ozone) { |
| 97 deps += [ "//ui/ozone" ] | 98 deps += [ "//ui/ozone" ] |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 "//ui/base:test_support", | 315 "//ui/base:test_support", |
| 315 "//ui/compositor", | 316 "//ui/compositor", |
| 316 "//ui/events:test_support", | 317 "//ui/events:test_support", |
| 317 "//ui/gl:test_support", | 318 "//ui/gl:test_support", |
| 318 "//ui/resources", | 319 "//ui/resources", |
| 319 "//ui/resources:ui_test_pak", | 320 "//ui/resources:ui_test_pak", |
| 320 "//ui/strings", | 321 "//ui/strings", |
| 321 ] | 322 ] |
| 322 } | 323 } |
| 323 } | 324 } |
| OLD | NEW |