| 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/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 1871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1882 deps += [ | 1882 deps += [ |
| 1883 "//services/ui/public/cpp", | 1883 "//services/ui/public/cpp", |
| 1884 "//services/ui/public/interfaces", | 1884 "//services/ui/public/interfaces", |
| 1885 ] | 1885 ] |
| 1886 } | 1886 } |
| 1887 | 1887 |
| 1888 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window | 1888 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window |
| 1889 # apart from aura::Window, which is also not supported). | 1889 # apart from aura::Window, which is also not supported). |
| 1890 if (!is_mac) { | 1890 if (!is_mac) { |
| 1891 sources += [ | 1891 sources += [ |
| 1892 "views/ime_driver_mus.cc", | 1892 "views/ime_driver/ime_driver_mus.cc", |
| 1893 "views/ime_driver_mus.h", | 1893 "views/ime_driver/ime_driver_mus.h", |
| 1894 "views/ime_driver/input_method_bridge_chromeos.cc", |
| 1895 "views/ime_driver/input_method_bridge_chromeos.h", |
| 1896 "views/ime_driver/noop_input_method.cc", |
| 1897 "views/ime_driver/noop_input_method.h", |
| 1898 "views/ime_driver/remote_text_input_client.cc", |
| 1899 "views/ime_driver/remote_text_input_client.h", |
| 1894 "views/tabs/window_finder_mus.cc", | 1900 "views/tabs/window_finder_mus.cc", |
| 1895 "views/tabs/window_finder_mus.h", | 1901 "views/tabs/window_finder_mus.h", |
| 1896 ] | 1902 ] |
| 1897 | 1903 |
| 1898 deps += [ "//ui/views/mus" ] | 1904 deps += [ "//ui/views/mus" ] |
| 1899 } | 1905 } |
| 1900 } | 1906 } |
| 1901 if (use_ash) { | 1907 if (use_ash) { |
| 1902 sources += [ | 1908 sources += [ |
| 1903 "views/frame/browser_frame_ash.cc", | 1909 "views/frame/browser_frame_ash.cc", |
| (...skipping 1577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3481 "test/test_confirm_bubble_model.cc", | 3487 "test/test_confirm_bubble_model.cc", |
| 3482 "test/test_confirm_bubble_model.h", | 3488 "test/test_confirm_bubble_model.h", |
| 3483 ] | 3489 ] |
| 3484 deps += [ "//chrome/test:test_support_ui" ] | 3490 deps += [ "//chrome/test:test_support_ui" ] |
| 3485 } | 3491 } |
| 3486 | 3492 |
| 3487 if (enable_extensions) { | 3493 if (enable_extensions) { |
| 3488 deps += [ "//extensions/browser" ] | 3494 deps += [ "//extensions/browser" ] |
| 3489 } | 3495 } |
| 3490 } | 3496 } |
| OLD | NEW |