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

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

Issue 2694893002: Integrate SMS service with Desktop iOS promotion (Closed)
Patch Set: nits Created 3 years, 10 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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 3003 matching lines...) Expand 10 before | Expand all | Expand 10 after
3014 } else { # non-Mac. 3014 } else { # non-Mac.
3015 sources += [ "web_contents_sizer.cc" ] 3015 sources += [ "web_contents_sizer.cc" ]
3016 } 3016 }
3017 3017
3018 if (is_win) { 3018 if (is_win) {
3019 sources += [ 3019 sources += [
3020 "desktop_ios_promotion/desktop_ios_promotion_controller.cc", 3020 "desktop_ios_promotion/desktop_ios_promotion_controller.cc",
3021 "desktop_ios_promotion/desktop_ios_promotion_controller.h", 3021 "desktop_ios_promotion/desktop_ios_promotion_controller.h",
3022 "desktop_ios_promotion/desktop_ios_promotion_util.cc", 3022 "desktop_ios_promotion/desktop_ios_promotion_util.cc",
3023 "desktop_ios_promotion/desktop_ios_promotion_util.h", 3023 "desktop_ios_promotion/desktop_ios_promotion_util.h",
3024 "desktop_ios_promotion/desktop_ios_promotion_view.h",
3024 "desktop_ios_promotion/sms_service.cc", 3025 "desktop_ios_promotion/sms_service.cc",
3025 "desktop_ios_promotion/sms_service.h", 3026 "desktop_ios_promotion/sms_service.h",
3026 "desktop_ios_promotion/sms_service_factory.cc", 3027 "desktop_ios_promotion/sms_service_factory.cc",
3027 "desktop_ios_promotion/sms_service_factory.h", 3028 "desktop_ios_promotion/sms_service_factory.h",
3028 "input_method/input_method_engine.cc", 3029 "input_method/input_method_engine.cc",
3029 "input_method/input_method_engine.h", 3030 "input_method/input_method_engine.h",
3030 "input_method/input_method_engine_base.cc", 3031 "input_method/input_method_engine_base.cc",
3031 "input_method/input_method_engine_base.h", 3032 "input_method/input_method_engine_base.h",
3032 "network_profile_bubble.cc", 3033 "network_profile_bubble.cc",
3033 "network_profile_bubble.h", 3034 "network_profile_bubble.h",
3034 "views/color_chooser_dialog.cc", 3035 "views/color_chooser_dialog.cc",
3035 "views/color_chooser_dialog.h", 3036 "views/color_chooser_dialog.h",
3036 "views/critical_notification_bubble_view.cc", 3037 "views/critical_notification_bubble_view.cc",
3037 "views/critical_notification_bubble_view.h", 3038 "views/critical_notification_bubble_view.h",
3038 "views/desktop_ios_promotion/desktop_ios_promotion_view.cc", 3039 "views/desktop_ios_promotion/desktop_ios_promotion_bubble_view.cc",
3039 "views/desktop_ios_promotion/desktop_ios_promotion_view.h", 3040 "views/desktop_ios_promotion/desktop_ios_promotion_bubble_view.h",
3040 "views/frame/browser_desktop_window_tree_host.h", 3041 "views/frame/browser_desktop_window_tree_host.h",
3041 "views/frame/browser_desktop_window_tree_host_win.cc", 3042 "views/frame/browser_desktop_window_tree_host_win.cc",
3042 "views/frame/browser_desktop_window_tree_host_win.h", 3043 "views/frame/browser_desktop_window_tree_host_win.h",
3043 "views/frame/glass_browser_frame_view.cc", 3044 "views/frame/glass_browser_frame_view.cc",
3044 "views/frame/glass_browser_frame_view.h", 3045 "views/frame/glass_browser_frame_view.h",
3045 "views/frame/native_browser_frame_factory_aurawin.cc", 3046 "views/frame/native_browser_frame_factory_aurawin.cc",
3046 "views/frame/windows_10_caption_button.cc", 3047 "views/frame/windows_10_caption_button.cc",
3047 "views/frame/windows_10_caption_button.h", 3048 "views/frame/windows_10_caption_button.h",
3048 "views/network_profile_bubble_view.cc", 3049 "views/network_profile_bubble_view.cc",
3049 "views/uninstall_view.cc", 3050 "views/uninstall_view.cc",
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
3516 "test/test_confirm_bubble_model.cc", 3517 "test/test_confirm_bubble_model.cc",
3517 "test/test_confirm_bubble_model.h", 3518 "test/test_confirm_bubble_model.h",
3518 ] 3519 ]
3519 deps += [ "//chrome/test:test_support_ui" ] 3520 deps += [ "//chrome/test:test_support_ui" ]
3520 } 3521 }
3521 3522
3522 if (enable_extensions) { 3523 if (enable_extensions) {
3523 deps += [ "//extensions/browser" ] 3524 deps += [ "//extensions/browser" ]
3524 } 3525 }
3525 } 3526 }
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/ui/desktop_ios_promotion/desktop_ios_promotion_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698