| 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 | 7 |
| 8 gypi_values = exec_script( | 8 gypi_values = exec_script( |
| 9 "//build/gypi_to_gn.py", | 9 "//build/gypi_to_gn.py", |
| 10 [ rebase_path("ash.gyp") ], | 10 [ rebase_path("ash.gyp") ], |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "//skia", | 32 "//skia", |
| 33 "//third_party/icu", | 33 "//third_party/icu", |
| 34 "//ui/accelerometer", | 34 "//ui/accelerometer", |
| 35 "//ui/accessibility", | 35 "//ui/accessibility", |
| 36 "//ui/app_list", | 36 "//ui/app_list", |
| 37 "//ui/aura", | 37 "//ui/aura", |
| 38 "//ui/base", | 38 "//ui/base", |
| 39 "//ui/compositor", | 39 "//ui/compositor", |
| 40 "//ui/events", | 40 "//ui/events", |
| 41 "//ui/events:events_base", | 41 "//ui/events:events_base", |
| 42 "//ui/events/devices", |
| 42 "//ui/gfx", | 43 "//ui/gfx", |
| 43 "//ui/gfx/geometry", | 44 "//ui/gfx/geometry", |
| 44 "//ui/keyboard", | 45 "//ui/keyboard", |
| 45 "//ui/message_center", | 46 "//ui/message_center", |
| 46 "//ui/resources", | 47 "//ui/resources", |
| 47 "//ui/strings", | 48 "//ui/strings", |
| 48 "//ui/views", | 49 "//ui/views", |
| 49 "//ui/views/controls/webview", | 50 "//ui/views/controls/webview", |
| 50 "//ui/web_dialogs", | 51 "//ui/web_dialogs", |
| 51 "//ui/wm", | 52 "//ui/wm", |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 "//third_party/icu", | 247 "//third_party/icu", |
| 247 "//ui/accelerometer", | 248 "//ui/accelerometer", |
| 248 "//ui/accessibility", | 249 "//ui/accessibility", |
| 249 "//ui/aura", | 250 "//ui/aura", |
| 250 "//ui/aura:test_support", | 251 "//ui/aura:test_support", |
| 251 "//ui/base", | 252 "//ui/base", |
| 252 "//ui/base:test_support", | 253 "//ui/base:test_support", |
| 253 "//ui/compositor", | 254 "//ui/compositor", |
| 254 "//ui/compositor:test_support", | 255 "//ui/compositor:test_support", |
| 255 "//ui/events", | 256 "//ui/events", |
| 257 "//ui/events/devices", |
| 256 "//ui/events:test_support", | 258 "//ui/events:test_support", |
| 257 "//ui/events:gesture_detection", | 259 "//ui/events:gesture_detection", |
| 258 "//ui/gfx", | 260 "//ui/gfx", |
| 259 "//ui/gfx/geometry", | 261 "//ui/gfx/geometry", |
| 260 "//ui/keyboard", | 262 "//ui/keyboard", |
| 261 "//ui/message_center", | 263 "//ui/message_center", |
| 262 "//ui/message_center:test_support", | 264 "//ui/message_center:test_support", |
| 263 "//ui/resources", | 265 "//ui/resources", |
| 264 "//ui/views", | 266 "//ui/views", |
| 265 "//ui/views:test_support", | 267 "//ui/views:test_support", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 "//content/test:test_support", | 371 "//content/test:test_support", |
| 370 "//skia", | 372 "//skia", |
| 371 "//testing/gtest", | 373 "//testing/gtest", |
| 372 "//ui/accessibility", | 374 "//ui/accessibility", |
| 373 ] | 375 ] |
| 374 | 376 |
| 375 if (is_chromeos) { | 377 if (is_chromeos) { |
| 376 deps += [ "//ui/display" ] | 378 deps += [ "//ui/display" ] |
| 377 } | 379 } |
| 378 } | 380 } |
| OLD | NEW |