| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 if (use_ozone) { | 98 if (use_ozone) { |
| 99 deps += [ "//ui/ozone" ] | 99 deps += [ "//ui/ozone" ] |
| 100 } | 100 } |
| 101 if (use_x11) { | 101 if (use_x11) { |
| 102 configs += [ | 102 configs += [ |
| 103 "//build/config/linux:x11", | 103 "//build/config/linux:x11", |
| 104 "//build/config/linux:xrandr", | 104 "//build/config/linux:xrandr", |
| 105 ] | 105 ] |
| 106 deps += [ | 106 deps += [ |
| 107 "//ui/events/devices", | 107 "//ui/events/devices", |
| 108 "//ui/events/devices/x11", |
| 108 "//ui/events/platform/x11", | 109 "//ui/events/platform/x11", |
| 109 "//ui/gfx/x", | 110 "//ui/gfx/x", |
| 110 ] | 111 ] |
| 111 } | 112 } |
| 112 | 113 |
| 113 if (use_aura) { | 114 if (use_aura) { |
| 114 sources += gypi_values.views_aura_sources | 115 sources += gypi_values.views_aura_sources |
| 115 deps += [ | 116 deps += [ |
| 116 "//ui/aura", | 117 "//ui/aura", |
| 117 "//ui/touch_selection", | 118 "//ui/touch_selection", |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 "//ui/base:test_support", | 321 "//ui/base:test_support", |
| 321 "//ui/compositor", | 322 "//ui/compositor", |
| 322 "//ui/events:test_support", | 323 "//ui/events:test_support", |
| 323 "//ui/gl:test_support", | 324 "//ui/gl:test_support", |
| 324 "//ui/resources", | 325 "//ui/resources", |
| 325 "//ui/resources:ui_test_pak", | 326 "//ui/resources:ui_test_pak", |
| 326 "//ui/strings", | 327 "//ui/strings", |
| 327 ] | 328 ] |
| 328 } | 329 } |
| 329 } | 330 } |
| OLD | NEW |