| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 "//testing/gtest", | 176 "//testing/gtest", |
| 177 "//ui/accessibility", | 177 "//ui/accessibility", |
| 178 "//ui/app_list", | 178 "//ui/app_list", |
| 179 "//ui/app_list:test_support", | 179 "//ui/app_list:test_support", |
| 180 "//ui/events:events_base", | 180 "//ui/events:events_base", |
| 181 "//ui/gl", | 181 "//ui/gl", |
| 182 "//ui/views", | 182 "//ui/views", |
| 183 "//ui/views:test_support", | 183 "//ui/views:test_support", |
| 184 ] | 184 ] |
| 185 | 185 |
| 186 forward_dependent_configs_from = [ ":ash" ] |
| 187 |
| 186 if (is_win) { | 188 if (is_win) { |
| 187 sources += [ | 189 sources += [ |
| 188 "test/test_metro_viewer_process_host.cc", | 190 "test/test_metro_viewer_process_host.cc", |
| 189 "test/test_metro_viewer_process_host.h", | 191 "test/test_metro_viewer_process_host.h", |
| 190 ] | 192 ] |
| 191 deps += [ | 193 deps += [ |
| 192 "//ipc", | 194 "//ipc", |
| 193 #'../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages', TODO(GYP) | 195 #'../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages', TODO(GYP) |
| 194 #'../win8/win8.gyp:metro_viewer', TODO(GYP) | 196 #'../win8/win8.gyp:metro_viewer', TODO(GYP) |
| 195 #'../win8/win8.gyp:test_support_win8', TODO(GYP) | 197 #'../win8/win8.gyp:test_support_win8', TODO(GYP) |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 "//content/test:test_support", | 377 "//content/test:test_support", |
| 376 "//skia", | 378 "//skia", |
| 377 "//testing/gtest", | 379 "//testing/gtest", |
| 378 "//ui/accessibility", | 380 "//ui/accessibility", |
| 379 ] | 381 ] |
| 380 | 382 |
| 381 if (is_chromeos) { | 383 if (is_chromeos) { |
| 382 deps += [ "//ui/display" ] | 384 deps += [ "//ui/display" ] |
| 383 } | 385 } |
| 384 } | 386 } |
| OLD | NEW |