| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'compiler_files', | 8 'target_name': 'compiler_files', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| 11 'src/include', | 11 'src/include', |
| 12 ], | 12 ], |
| 13 'sources': [ | 13 'sources': [ |
| 14 'src/src/idl_gen_cpp.cpp', | 14 'src/src/idl_gen_cpp.cpp', |
| 15 'src/src/idl_gen_fbs.cpp', | 15 'src/src/idl_gen_fbs.cpp', |
| 16 'src/src/idl_gen_general.cpp', | 16 'src/src/idl_gen_general.cpp', |
| 17 'src/src/idl_gen_go.cpp', | 17 'src/src/idl_gen_go.cpp', |
| 18 'src/src/idl_gen_js.cpp', | 18 'src/src/idl_gen_js.cpp', |
| 19 'src/src/idl_gen_php.cpp', | 19 'src/src/idl_gen_php.cpp', |
| 20 'src/src/idl_gen_python.cpp', | 20 'src/src/idl_gen_python.cpp', |
| 21 'src/src/idl_gen_text.cpp', | 21 'src/src/idl_gen_text.cpp', |
| 22 'src/src/idl_parser.cpp', | 22 'src/src/idl_parser.cpp', |
| 23 'src/src/reflection.cpp', | 23 'src/src/reflection.cpp', |
| 24 'src/src/util.cpp', | 24 'src/src/util.cpp', |
| 25 'src/include/idl.h', | 25 'src/include/flatbuffers/code_generators.h', |
| 26 'src/include/util.h', | 26 'src/include/flatbuffers/idl.h', |
| 27 'src/include/flatbuffers/util.h', |
| 27 ], | 28 ], |
| 28 }, | 29 }, |
| 29 { | 30 { |
| 30 'target_name': 'flatbuffers', | 31 'target_name': 'flatbuffers', |
| 31 'type': 'static_library', | 32 'type': 'static_library', |
| 32 'include_dirs': [ | 33 'include_dirs': [ |
| 33 'src/include', | 34 'src/include', |
| 34 ], | 35 ], |
| 35 'direct_dependent_settings': { | 36 'direct_dependent_settings': { |
| 36 'include_dirs': [ | 37 'include_dirs': [ |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 # but are listed here because test.cpp tests more than | 89 # but are listed here because test.cpp tests more than |
| 89 # what will get included into Chrome (reflection and generation). | 90 # what will get included into Chrome (reflection and generation). |
| 90 'src/include/reflection_generated.h', | 91 'src/include/reflection_generated.h', |
| 91 'src/include/reflection.h', | 92 'src/include/reflection.h', |
| 92 # This is the actual test. | 93 # This is the actual test. |
| 93 'src/tests/test.cpp', | 94 'src/tests/test.cpp', |
| 94 ] | 95 ] |
| 95 } | 96 } |
| 96 ], | 97 ], |
| 97 } | 98 } |
| OLD | NEW |