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