| 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': [ |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 'sources': [ | 52 'sources': [ |
| 53 'src/src/flatc.cpp', | 53 'src/src/flatc.cpp', |
| 54 ], | 54 ], |
| 55 }, | 55 }, |
| 56 | 56 |
| 57 # The following is just for testing. | 57 # The following is just for testing. |
| 58 { | 58 { |
| 59 'target_name': 'flatbuffers_samplebuffer', | 59 'target_name': 'flatbuffers_samplebuffer', |
| 60 'type': 'static_library', | 60 'type': 'static_library', |
| 61 'sources': [ | 61 'sources': [ |
| 62 # Disabled as workaround for crbug.com/611351. |
| 63 # 'src/tests/include_test1.fbs', |
| 64 # 'src/tests/include_test2.fbs', |
| 62 'src/tests/monster_test.fbs', | 65 'src/tests/monster_test.fbs', |
| 63 'src/tests/include_test1.fbs', | |
| 64 'src/tests/include_test2.fbs', | |
| 65 'src/tests/namespace_test/namespace_test1.fbs', | 66 'src/tests/namespace_test/namespace_test1.fbs', |
| 66 'src/tests/namespace_test/namespace_test2.fbs', | 67 'src/tests/namespace_test/namespace_test2.fbs', |
| 67 ], | 68 ], |
| 68 'variables': { | 69 'variables': { |
| 69 'flatc_out_dir': '.', | 70 'flatc_out_dir': '.', |
| 70 }, | 71 }, |
| 71 'includes': [ 'flatc.gypi' ], | 72 'includes': [ 'flatc.gypi' ], |
| 72 'dependencies': [ | 73 'dependencies': [ |
| 73 ':flatbuffers', | 74 ':flatbuffers', |
| 74 ], | 75 ], |
| (...skipping 12 matching lines...) Expand all Loading... |
| 87 # but are listed here because test.cpp tests more than | 88 # but are listed here because test.cpp tests more than |
| 88 # what will get included into Chrome (reflection and generation). | 89 # what will get included into Chrome (reflection and generation). |
| 89 'src/include/reflection_generated.h', | 90 'src/include/reflection_generated.h', |
| 90 'src/include/reflection.h', | 91 'src/include/reflection.h', |
| 91 # This is the actual test. | 92 # This is the actual test. |
| 92 'src/tests/test.cpp', | 93 'src/tests/test.cpp', |
| 93 ] | 94 ] |
| 94 } | 95 } |
| 95 ], | 96 ], |
| 96 } | 97 } |
| OLD | NEW |