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

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

Issue 1410153003: Browser frame for Aura Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed unrelated changes + formatting. Created 5 years, 1 month 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 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 if (use_x11) { 421 if (use_x11) {
422 sources += rebase_path(gypi_values.chrome_browser_ui_x11_sources, 422 sources += rebase_path(gypi_values.chrome_browser_ui_x11_sources,
423 ".", 423 ".",
424 "//chrome") 424 "//chrome")
425 configs += [ "//build/config/linux:x11" ] 425 configs += [ "//build/config/linux:x11" ]
426 deps += [ "//ui/events/devices" ] 426 deps += [ "//ui/events/devices" ]
427 if (is_chromeos) { 427 if (is_chromeos) {
428 sources -= [ "views/tabs/window_finder_x11.cc" ] 428 sources -= [ "views/tabs/window_finder_x11.cc" ]
429 } 429 }
430 } 430 }
431 } else if (use_aura && is_android) {
432 sources += [ "//chrome/browser/ui/views/frame/native_browser_frame_factory_a ndroid.cc" ]
mfomitchev 2015/10/29 15:53:44 All the other native_browser_frame files are in ch
Hadi 2015/11/02 14:47:40 Done. Can you please double check if I got what yo
431 } 433 }
432 434
433 if (use_udev) { 435 if (use_udev) {
434 deps += [ "//device/udev_linux" ] 436 deps += [ "//device/udev_linux" ]
435 } 437 }
436 438
437 if (enable_app_list) { 439 if (enable_app_list) {
438 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, 440 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources,
439 ".", 441 ".",
440 "//chrome") 442 "//chrome")
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 "//chrome/browser", 587 "//chrome/browser",
586 "//content/public/browser", 588 "//content/public/browser",
587 "//content/public/common", 589 "//content/public/common",
588 "//content/test:test_support", 590 "//content/test:test_support",
589 "//net:test_support", 591 "//net:test_support",
590 "//skia", 592 "//skia",
591 "//testing/gtest", 593 "//testing/gtest",
592 "//ui/base", 594 "//ui/base",
593 ] 595 ]
594 } 596 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698