| 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 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
| 9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 | 10 |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 rebase_path(gypi_values.chrome_browser_ui_aura_sources, ".", "//chrome") | 378 rebase_path(gypi_values.chrome_browser_ui_aura_sources, ".", "//chrome") |
| 379 deps += [ | 379 deps += [ |
| 380 # aura uses some of ash resources. | 380 # aura uses some of ash resources. |
| 381 "//ash/resources", | 381 "//ash/resources", |
| 382 "//ui/aura", | 382 "//ui/aura", |
| 383 "//ui/keyboard", | 383 "//ui/keyboard", |
| 384 "//ui/keyboard:keyboard_with_content", | 384 "//ui/keyboard:keyboard_with_content", |
| 385 "//ui/keyboard:resources", | 385 "//ui/keyboard:resources", |
| 386 "//ui/wm", | 386 "//ui/wm", |
| 387 ] | 387 ] |
| 388 defines += [ "MOJO_SHELL_CLIENT" ] | |
| 389 if (!is_chromeos) { | 388 if (!is_chromeos) { |
| 390 sources += rebase_path(gypi_values.chrome_browser_ui_aura_non_chromeos, | 389 sources += rebase_path(gypi_values.chrome_browser_ui_aura_non_chromeos, |
| 391 ".", | 390 ".", |
| 392 "//chrome") | 391 "//chrome") |
| 393 } | 392 } |
| 394 } | 393 } |
| 395 if (ui_compositor_image_transport) { | 394 if (ui_compositor_image_transport) { |
| 396 deps += [ "//ui/gl" ] | 395 deps += [ "//ui/gl" ] |
| 397 } | 396 } |
| 398 if (use_nss_certs) { | 397 if (use_nss_certs) { |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 "//chrome/browser", | 709 "//chrome/browser", |
| 711 "//content/public/browser", | 710 "//content/public/browser", |
| 712 "//content/public/common", | 711 "//content/public/common", |
| 713 "//content/test:test_support", | 712 "//content/test:test_support", |
| 714 "//net:test_support", | 713 "//net:test_support", |
| 715 "//skia", | 714 "//skia", |
| 716 "//testing/gtest", | 715 "//testing/gtest", |
| 717 "//ui/base", | 716 "//ui/base", |
| 718 ] | 717 ] |
| 719 } | 718 } |
| OLD | NEW |