Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 2099513003: mus: Use the new drag API to implement tab dragging in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dragging-part-1
Patch Set: Minor pruning Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//chrome/common/features.gni") 8 import("//chrome/common/features.gni")
9 9
10 gypi_values = exec_script("//build/gypi_to_gn.py", 10 gypi_values = exec_script("//build/gypi_to_gn.py",
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 if (!is_mac) { 323 if (!is_mac) {
324 sources += 324 sources +=
325 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, 325 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources,
326 ".", 326 ".",
327 "//chrome") 327 "//chrome")
328 if (use_aura) { 328 if (use_aura) {
329 deps += [ 329 deps += [
330 "//components/mus/public/cpp", 330 "//components/mus/public/cpp",
331 "//components/mus/public/interfaces", 331 "//components/mus/public/interfaces",
332 ] 332 ]
333
334 # TODO(erg): These files hard depend on mus, and thus can't be in a gyp
335 # build. When gyp goes away, merge this back into the sources list.
336 sources += [
337 "views/tabs/window_finder_mus.cc",
338 "views/tabs/window_finder_mus.h",
339 ]
333 } 340 }
334 if (enable_extensions) { 341 if (enable_extensions) {
335 sources += rebase_path( 342 sources += rebase_path(
336 gypi_values.chrome_browser_ui_views_extensions_non_mac_sources, 343 gypi_values.chrome_browser_ui_views_extensions_non_mac_sources,
337 ".", 344 ".",
338 "//chrome") 345 "//chrome")
339 } 346 }
340 } 347 }
341 if (use_ash) { 348 if (use_ash) {
342 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, 349 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources,
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 "//chrome/browser", 720 "//chrome/browser",
714 "//content/public/browser", 721 "//content/public/browser",
715 "//content/public/common", 722 "//content/public/common",
716 "//content/test:test_support", 723 "//content/test:test_support",
717 "//net:test_support", 724 "//net:test_support",
718 "//skia", 725 "//skia",
719 "//testing/gtest", 726 "//testing/gtest",
720 "//ui/base", 727 "//ui/base",
721 ] 728 ]
722 } 729 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698