Chromium Code Reviews| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 source_set("ime") { | 7 source_set("ime") { |
| 8 # GYP version: ui/base/ime/ime.gypi, which is included into ui_base | 8 # GYP version: ui/base/ime/ime.gypi, which is included into ui_base |
| 9 sources = [ | 9 sources = [ |
| 10 "../ui_base_export.h", | |
|
tfarina
2014/08/28 17:54:03
:(
| |
| 10 "candidate_window.cc", | 11 "candidate_window.cc", |
| 11 "candidate_window.h", | 12 "candidate_window.h", |
| 12 "chromeos/character_composer.cc", | 13 "chromeos/character_composer.cc", |
| 13 "chromeos/character_composer.h", | 14 "chromeos/character_composer.h", |
| 14 "chromeos/ime_bridge.cc", | 15 "chromeos/ime_bridge.cc", |
| 15 "chromeos/ime_bridge.h", | 16 "chromeos/ime_bridge.h", |
| 16 "chromeos/ime_keymap.cc", | 17 "chromeos/ime_keymap.cc", |
| 17 "chromeos/ime_keymap.h", | 18 "chromeos/ime_keymap.h", |
| 18 "chromeos/mock_ime_candidate_window_handler.cc", | 19 "chromeos/mock_ime_candidate_window_handler.cc", |
| 19 "chromeos/mock_ime_candidate_window_handler.h", | 20 "chromeos/mock_ime_candidate_window_handler.h", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 104 sources -= [ | 105 sources -= [ |
| 105 "composition_text_util_pango.cc", | 106 "composition_text_util_pango.cc", |
| 106 "composition_text_util_pango.h", | 107 "composition_text_util_pango.h", |
| 107 ] | 108 ] |
| 108 } | 109 } |
| 109 | 110 |
| 110 if (is_android) { | 111 if (is_android) { |
| 111 deps -= [ "//ui/events" ] | 112 deps -= [ "//ui/events" ] |
| 112 } | 113 } |
| 113 } | 114 } |
| OLD | NEW |