| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.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("../../chrome_browser_ui.gypi") ], | 10 [ rebase_path("../../chrome_browser_ui.gypi") ], |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 rebase_path(gypi_values.chrome_browser_ui_aura_sources, ".", "//chrome") | 292 rebase_path(gypi_values.chrome_browser_ui_aura_sources, ".", "//chrome") |
| 293 deps += [ | 293 deps += [ |
| 294 # aura uses some of ash resources. | 294 # aura uses some of ash resources. |
| 295 "//ash/resources", | 295 "//ash/resources", |
| 296 "//ui/aura", | 296 "//ui/aura", |
| 297 "//ui/keyboard", | 297 "//ui/keyboard", |
| 298 "//ui/keyboard:keyboard_with_content", | 298 "//ui/keyboard:keyboard_with_content", |
| 299 "//ui/keyboard:resources", | 299 "//ui/keyboard:resources", |
| 300 "//ui/wm", | 300 "//ui/wm", |
| 301 ] | 301 ] |
| 302 defines += [ "MOJO_SHELL_CLIENT" ] |
| 302 if (!is_chromeos) { | 303 if (!is_chromeos) { |
| 303 sources += rebase_path(gypi_values.chrome_browser_ui_aura_non_chromeos, | 304 sources += rebase_path(gypi_values.chrome_browser_ui_aura_non_chromeos, |
| 304 ".", | 305 ".", |
| 305 "//chrome") | 306 "//chrome") |
| 306 } | 307 } |
| 307 } | 308 } |
| 308 if (ui_compositor_image_transport) { | 309 if (ui_compositor_image_transport) { |
| 309 deps += [ "//ui/gl" ] | 310 deps += [ "//ui/gl" ] |
| 310 } | 311 } |
| 311 if (use_nss_certs) { | 312 if (use_nss_certs) { |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 "//chrome/browser", | 594 "//chrome/browser", |
| 594 "//content/public/browser", | 595 "//content/public/browser", |
| 595 "//content/public/common", | 596 "//content/public/common", |
| 596 "//content/test:test_support", | 597 "//content/test:test_support", |
| 597 "//net:test_support", | 598 "//net:test_support", |
| 598 "//skia", | 599 "//skia", |
| 599 "//testing/gtest", | 600 "//testing/gtest", |
| 600 "//ui/base", | 601 "//ui/base", |
| 601 ] | 602 ] |
| 602 } | 603 } |
| OLD | NEW |