OLD | NEW |
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 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1071 ['enable_printing != 0', { | 1071 ['enable_printing != 0', { |
1072 'dependencies': [ | 1072 'dependencies': [ |
1073 '../printing/printing.gyp:printing', | 1073 '../printing/printing.gyp:printing', |
1074 ], | 1074 ], |
1075 }], | 1075 }], |
1076 ['use_ozone == 1', { | 1076 ['use_ozone == 1', { |
1077 'dependencies': [ | 1077 'dependencies': [ |
1078 '../ui/ozone/ozone.gyp:ozone', | 1078 '../ui/ozone/ozone.gyp:ozone', |
1079 ], | 1079 ], |
1080 'sources!': [ | 1080 'sources!': [ |
| 1081 'browser/chromeos/events/system_key_event_listener.cc', |
| 1082 'browser/chromeos/events/system_key_event_listener.h', |
| 1083 'browser/chromeos/events/xinput_hierarchy_changed_event_listener.cc'
, |
| 1084 'browser/chromeos/events/xinput_hierarchy_changed_event_listener.h', |
1081 'browser/chromeos/input_method/input_method_engine.cc', | 1085 'browser/chromeos/input_method/input_method_engine.cc', |
1082 'browser/chromeos/input_method/input_method_engine.h', | 1086 'browser/chromeos/input_method/input_method_engine.h', |
1083 ], | 1087 ], |
1084 'sources/': [ | |
1085 ['exclude', '^browser/chromeos/events/'], | |
1086 ], | |
1087 }], | 1088 }], |
1088 ], | 1089 ], |
1089 }, | 1090 }, |
1090 { | 1091 { |
1091 # Protobuf compiler / generator for the Drive protocol buffer. | 1092 # Protobuf compiler / generator for the Drive protocol buffer. |
1092 'target_name': 'drive_proto', | 1093 'target_name': 'drive_proto', |
1093 'type': 'static_library', | 1094 'type': 'static_library', |
1094 'sources': [ 'browser/chromeos/drive/drive.proto' ], | 1095 'sources': [ 'browser/chromeos/drive/drive.proto' ], |
1095 'variables': { | 1096 'variables': { |
1096 'proto_in_dir': 'browser/chromeos/drive', | 1097 'proto_in_dir': 'browser/chromeos/drive', |
(...skipping 24 matching lines...) Expand all Loading... |
1121 'browser/chromeos/attestation/attestation_signed_data.proto', | 1122 'browser/chromeos/attestation/attestation_signed_data.proto', |
1122 ], | 1123 ], |
1123 'variables': { | 1124 'variables': { |
1124 'proto_in_dir': 'browser/chromeos/attestation', | 1125 'proto_in_dir': 'browser/chromeos/attestation', |
1125 'proto_out_dir': 'chrome/browser/chromeos/attestation', | 1126 'proto_out_dir': 'chrome/browser/chromeos/attestation', |
1126 }, | 1127 }, |
1127 'includes': [ '../build/protoc.gypi' ] | 1128 'includes': [ '../build/protoc.gypi' ] |
1128 }, | 1129 }, |
1129 ], | 1130 ], |
1130 } | 1131 } |
OLD | NEW |