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

Side by Side Diff: chrome/chrome_browser_chromeos.gypi

Issue 444523003: Support IME extensions for Ozone. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed compiling failures. Created 6 years, 4 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser_chromeos', 9 'target_name': 'browser_chromeos',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after
1150 }], 1150 }],
1151 ['use_ozone == 1', { 1151 ['use_ozone == 1', {
1152 'dependencies': [ 1152 'dependencies': [
1153 '../ui/ozone/ozone.gyp:ozone', 1153 '../ui/ozone/ozone.gyp:ozone',
1154 ], 1154 ],
1155 'sources!': [ 1155 'sources!': [
1156 'browser/chromeos/events/system_key_event_listener.cc', 1156 'browser/chromeos/events/system_key_event_listener.cc',
1157 'browser/chromeos/events/system_key_event_listener.h', 1157 'browser/chromeos/events/system_key_event_listener.h',
1158 'browser/chromeos/events/xinput_hierarchy_changed_event_listener.cc' , 1158 'browser/chromeos/events/xinput_hierarchy_changed_event_listener.cc' ,
1159 'browser/chromeos/events/xinput_hierarchy_changed_event_listener.h', 1159 'browser/chromeos/events/xinput_hierarchy_changed_event_listener.h',
1160 'browser/chromeos/input_method/input_method_engine.cc',
1161 'browser/chromeos/input_method/input_method_engine.h',
1162 ], 1160 ],
1163 }], 1161 }],
1164 ], 1162 ],
1165 }, 1163 },
1166 { 1164 {
1167 # Protobuf compiler / generator for the Drive protocol buffer. 1165 # Protobuf compiler / generator for the Drive protocol buffer.
1168 'target_name': 'drive_proto', 1166 'target_name': 'drive_proto',
1169 'type': 'static_library', 1167 'type': 'static_library',
1170 'sources': [ 'browser/chromeos/drive/drive.proto' ], 1168 'sources': [ 'browser/chromeos/drive/drive.proto' ],
1171 'variables': { 1169 'variables': {
(...skipping 25 matching lines...) Expand all
1197 'browser/chromeos/attestation/attestation_signed_data.proto', 1195 'browser/chromeos/attestation/attestation_signed_data.proto',
1198 ], 1196 ],
1199 'variables': { 1197 'variables': {
1200 'proto_in_dir': 'browser/chromeos/attestation', 1198 'proto_in_dir': 'browser/chromeos/attestation',
1201 'proto_out_dir': 'chrome/browser/chromeos/attestation', 1199 'proto_out_dir': 'chrome/browser/chromeos/attestation',
1202 }, 1200 },
1203 'includes': [ '../build/protoc.gypi' ] 1201 'includes': [ '../build/protoc.gypi' ]
1204 }, 1202 },
1205 ], 1203 ],
1206 } 1204 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698