| 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 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 # Protobuf compiler / generator for the Drive protocol buffer. | 763 # Protobuf compiler / generator for the Drive protocol buffer. |
| 764 'target_name': 'drive_proto', | 764 'target_name': 'drive_proto', |
| 765 'type': 'static_library', | 765 'type': 'static_library', |
| 766 'sources': [ 'browser/chromeos/gdata/drive.proto' ], | 766 'sources': [ 'browser/chromeos/gdata/drive.proto' ], |
| 767 'variables': { | 767 'variables': { |
| 768 'proto_in_dir': 'browser/chromeos/gdata', | 768 'proto_in_dir': 'browser/chromeos/gdata', |
| 769 'proto_out_dir': 'chrome/browser/chromeos/gdata', | 769 'proto_out_dir': 'chrome/browser/chromeos/gdata', |
| 770 }, | 770 }, |
| 771 'includes': [ '../build/protoc.gypi' ] | 771 'includes': [ '../build/protoc.gypi' ] |
| 772 }, | 772 }, |
| 773 { | |
| 774 # Protobuf compiler / generator for contacts-related protocol buffers. | |
| 775 'target_name': 'contacts_proto', | |
| 776 'type': 'static_library', | |
| 777 'sources': [ 'browser/chromeos/contacts/contact.proto' ], | |
| 778 'variables': { | |
| 779 'proto_in_dir': 'browser/chromeos/contacts', | |
| 780 'proto_out_dir': 'chrome/browser/chromeos/contacts', | |
| 781 }, | |
| 782 'includes': [ '../build/protoc.gypi' ] | |
| 783 }, | |
| 784 ], | 773 ], |
| 785 } | 774 } |
| OLD | NEW |