| 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 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1029 }], | 1029 }], |
| 1030 ['enable_printing != 0', { | 1030 ['enable_printing != 0', { |
| 1031 'dependencies': [ | 1031 'dependencies': [ |
| 1032 '../printing/printing.gyp:printing', | 1032 '../printing/printing.gyp:printing', |
| 1033 ], | 1033 ], |
| 1034 }], | 1034 }], |
| 1035 ['use_ozone == 1', { | 1035 ['use_ozone == 1', { |
| 1036 'dependencies': [ | 1036 'dependencies': [ |
| 1037 '../ui/ozone/ozone.gyp:ozone', | 1037 '../ui/ozone/ozone.gyp:ozone', |
| 1038 ], | 1038 ], |
| 1039 'sources!': [ |
| 1040 'browser/chromeos/input_method/input_method_engine.cc', |
| 1041 'browser/chromeos/input_method/input_method_engine.h', |
| 1042 ], |
| 1039 'sources/': [ | 1043 'sources/': [ |
| 1040 ['exclude', '^browser/chromeos/events/'], | 1044 ['exclude', '^browser/chromeos/events/'], |
| 1041 ], | 1045 ], |
| 1042 }], | 1046 }], |
| 1043 ], | 1047 ], |
| 1044 }, | 1048 }, |
| 1045 { | 1049 { |
| 1046 # Protobuf compiler / generator for the Drive protocol buffer. | 1050 # Protobuf compiler / generator for the Drive protocol buffer. |
| 1047 'target_name': 'drive_proto', | 1051 'target_name': 'drive_proto', |
| 1048 'type': 'static_library', | 1052 'type': 'static_library', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 1076 'browser/chromeos/attestation/attestation_signed_data.proto', | 1080 'browser/chromeos/attestation/attestation_signed_data.proto', |
| 1077 ], | 1081 ], |
| 1078 'variables': { | 1082 'variables': { |
| 1079 'proto_in_dir': 'browser/chromeos/attestation', | 1083 'proto_in_dir': 'browser/chromeos/attestation', |
| 1080 'proto_out_dir': 'chrome/browser/chromeos/attestation', | 1084 'proto_out_dir': 'chrome/browser/chromeos/attestation', |
| 1081 }, | 1085 }, |
| 1082 'includes': [ '../build/protoc.gypi' ] | 1086 'includes': [ '../build/protoc.gypi' ] |
| 1083 }, | 1087 }, |
| 1084 ], | 1088 ], |
| 1085 } | 1089 } |
| OLD | NEW |