OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 24 matching lines...) Expand all Loading... |
35 # option optimize_for = LITE_RUNTIME; | 35 # option optimize_for = LITE_RUNTIME; |
36 # | 36 # |
37 # to your .proto file. | 37 # to your .proto file. |
38 { | 38 { |
39 'target_name': 'protobuf_lite', | 39 'target_name': 'protobuf_lite', |
40 'type': 'static_library', | 40 'type': 'static_library', |
41 'toolsets': ['host', 'target'], | 41 'toolsets': ['host', 'target'], |
42 'sources': [ | 42 'sources': [ |
43 'src/google/protobuf/stubs/atomicops.h', | 43 'src/google/protobuf/stubs/atomicops.h', |
44 'src/google/protobuf/stubs/atomicops_internals_arm_gcc.h', | 44 'src/google/protobuf/stubs/atomicops_internals_arm_gcc.h', |
| 45 'src/google/protobuf/stubs/atomicops_internals_atomicword_compat.h', |
| 46 'src/google/protobuf/stubs/atomicops_internals_macosx.h', |
45 'src/google/protobuf/stubs/atomicops_internals_mips_gcc.h', | 47 'src/google/protobuf/stubs/atomicops_internals_mips_gcc.h', |
46 'src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc', | 48 'src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc', |
47 'src/google/protobuf/stubs/atomicops_internals_x86_gcc.h', | 49 'src/google/protobuf/stubs/atomicops_internals_x86_gcc.h', |
48 'src/google/protobuf/stubs/atomicops_internals_x86_macosx.h', | |
49 'src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc', | 50 'src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc', |
50 'src/google/protobuf/stubs/atomicops_internals_x86_msvc.h', | 51 'src/google/protobuf/stubs/atomicops_internals_x86_msvc.h', |
51 'src/google/protobuf/stubs/common.h', | 52 'src/google/protobuf/stubs/common.h', |
52 'src/google/protobuf/stubs/once.h', | 53 'src/google/protobuf/stubs/once.h', |
53 'src/google/protobuf/stubs/platform_macros.h', | 54 'src/google/protobuf/stubs/platform_macros.h', |
54 'src/google/protobuf/extension_set.h', | 55 'src/google/protobuf/extension_set.h', |
55 'src/google/protobuf/generated_message_util.h', | 56 'src/google/protobuf/generated_message_util.h', |
56 'src/google/protobuf/message_lite.h', | 57 'src/google/protobuf/message_lite.h', |
57 'src/google/protobuf/repeated_field.h', | 58 'src/google/protobuf/repeated_field.h', |
58 'src/google/protobuf/unknown_field_set.cc', | 59 'src/google/protobuf/unknown_field_set.cc', |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 # ], | 311 # ], |
311 # 'dependencies': [ | 312 # 'dependencies': [ |
312 # 'protoc#host', | 313 # 'protoc#host', |
313 # ], | 314 # ], |
314 # 'sources': [ | 315 # 'sources': [ |
315 # 'src/google/protobuf/descriptor.proto', | 316 # 'src/google/protobuf/descriptor.proto', |
316 # ], | 317 # ], |
317 }, | 318 }, |
318 ], | 319 ], |
319 } | 320 } |
OLD | NEW |