| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 ['OS!="win"', { | 7 ['OS!="win"', { |
| 8 'variables': { | 8 'variables': { |
| 9 'config_h_dir': | 9 'config_h_dir': |
| 10 '.', # crafted for gcc/linux. | 10 '.', # crafted for gcc/linux. |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 'GOOGLE_PROTOBUF_NO_RTTI', | 88 'GOOGLE_PROTOBUF_NO_RTTI', |
| 89 ], | 89 ], |
| 90 }, | 90 }, |
| 91 }, | 91 }, |
| 92 # This is the full, heavy protobuf lib that's needed for c++ .proto's | 92 # This is the full, heavy protobuf lib that's needed for c++ .proto's |
| 93 # that don't specify the LITE_RUNTIME option. The protocol | 93 # that don't specify the LITE_RUNTIME option. The protocol |
| 94 # compiler itself (protoc) falls into that category. | 94 # compiler itself (protoc) falls into that category. |
| 95 { | 95 { |
| 96 'target_name': 'protobuf', | 96 'target_name': 'protobuf', |
| 97 'type': '<(library)', | 97 'type': '<(library)', |
| 98 'toolsets': ['host'], | 98 'toolsets': ['host','target'], |
| 99 'sources': [ | 99 'sources': [ |
| 100 'src/src/google/protobuf/descriptor.h', | 100 'src/src/google/protobuf/descriptor.h', |
| 101 'src/src/google/protobuf/descriptor.pb.h', | 101 'src/src/google/protobuf/descriptor.pb.h', |
| 102 'src/src/google/protobuf/descriptor_database.h', | 102 'src/src/google/protobuf/descriptor_database.h', |
| 103 'src/src/google/protobuf/dynamic_message.h', | 103 'src/src/google/protobuf/dynamic_message.h', |
| 104 'src/src/google/protobuf/generated_message_reflection.h', | 104 'src/src/google/protobuf/generated_message_reflection.h', |
| 105 'src/src/google/protobuf/message.h', | 105 'src/src/google/protobuf/message.h', |
| 106 'src/src/google/protobuf/reflection_ops.h', | 106 'src/src/google/protobuf/reflection_ops.h', |
| 107 'src/src/google/protobuf/service.h', | 107 'src/src/google/protobuf/service.h', |
| 108 'src/src/google/protobuf/text_format.h', | 108 'src/src/google/protobuf/text_format.h', |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 # ], | 300 # ], |
| 301 }, | 301 }, |
| 302 ], | 302 ], |
| 303 } | 303 } |
| 304 | 304 |
| 305 # Local Variables: | 305 # Local Variables: |
| 306 # tab-width:2 | 306 # tab-width:2 |
| 307 # indent-tabs-mode:nil | 307 # indent-tabs-mode:nil |
| 308 # End: | 308 # End: |
| 309 # vim: set expandtab tabstop=2 shiftwidth=2: | 309 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |