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

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

Issue 2351893002: mash: Fix system tray clock 12/24 hour time setting (Closed)
Patch Set: tweak Created 4 years, 3 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("//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 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after
1371 deps += [ 1371 deps += [
1372 "//ash", 1372 "//ash",
1373 "//ash:ash_with_content", 1373 "//ash:ash_with_content",
1374 "//ash/common/strings", 1374 "//ash/common/strings",
1375 "//ash/public/interfaces", 1375 "//ash/public/interfaces",
1376 "//components/user_manager", 1376 "//components/user_manager",
1377 "//ui/app_list/presenter", 1377 "//ui/app_list/presenter",
1378 "//ui/app_list/presenter:mojom", 1378 "//ui/app_list/presenter:mojom",
1379 "//ui/keyboard:mojom", 1379 "//ui/keyboard:mojom",
1380 ] 1380 ]
1381 if (is_chromeos) {
sky 2016/09/19 23:47:52 Move to is_chromeos on 1188?
James Cook 2016/09/20 01:52:11 Done.
1382 sources += [
1383 "ash/system_tray_controller_mus.cc",
1384 "ash/system_tray_controller_mus.h",
1385 ]
1386 }
1381 } else { # Not ash. 1387 } else { # Not ash.
1382 sources += [ "views/touch_uma/touch_uma.cc" ] 1388 sources += [ "views/touch_uma/touch_uma.cc" ]
1383 } 1389 }
1384 if (toolkit_views) { 1390 if (toolkit_views) {
1385 sources += [ 1391 sources += [
1386 "autofill/save_card_bubble_controller.h", 1392 "autofill/save_card_bubble_controller.h",
1387 "autofill/save_card_bubble_controller_impl.cc", 1393 "autofill/save_card_bubble_controller_impl.cc",
1388 "autofill/save_card_bubble_controller_impl.h", 1394 "autofill/save_card_bubble_controller_impl.h",
1389 "autofill/save_card_bubble_view.h", 1395 "autofill/save_card_bubble_view.h",
1390 "browser_dialogs_mac.cc", 1396 "browser_dialogs_mac.cc",
(...skipping 1991 matching lines...) Expand 10 before | Expand all | Expand 10 after
3382 "passwords/passwords_model_delegate_mock.cc", 3388 "passwords/passwords_model_delegate_mock.cc",
3383 "passwords/passwords_model_delegate_mock.h", 3389 "passwords/passwords_model_delegate_mock.h",
3384 ] 3390 ]
3385 deps += [ "//chrome/test:test_support_ui" ] 3391 deps += [ "//chrome/test:test_support_ui" ]
3386 } 3392 }
3387 3393
3388 if (enable_extensions) { 3394 if (enable_extensions) {
3389 deps += [ "//extensions/browser" ] 3395 deps += [ "//extensions/browser" ]
3390 } 3396 }
3391 } 3397 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698