OLD | NEW |
1 # Copyright (c) 2011 The LevelDB Authors. All rights reserved. | 1 # Copyright (c) 2011 The LevelDB 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. See the AUTHORS file for names of contributors. | 3 # found in the LICENSE file. See the AUTHORS file for names of contributors. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'use_snappy%': 1, | 7 'use_snappy%': 1, |
8 }, | 8 }, |
9 'conditions': [ | 9 'conditions': [ |
10 ['OS == "android" and android_webview_build == 1', { | 10 ['OS == "android" and android_webview_build == 1', { |
(...skipping 19 matching lines...) Expand all Loading... |
30 'USE_SNAPPY=1', | 30 'USE_SNAPPY=1', |
31 ], | 31 ], |
32 }], | 32 }], |
33 ], | 33 ], |
34 }, | 34 }, |
35 'targets': [ | 35 'targets': [ |
36 { | 36 { |
37 'target_name': 'leveldatabase', | 37 'target_name': 'leveldatabase', |
38 'type': 'static_library', | 38 'type': 'static_library', |
39 'dependencies': [ | 39 'dependencies': [ |
| 40 '../../<(gyp_output_dir)/gn_gyp/third_party/re2/re2.gyp:re2', |
40 '../../base/base.gyp:base', | 41 '../../base/base.gyp:base', |
41 # base::LazyInstance is a template that pulls in dynamic_annotations so | 42 # base::LazyInstance is a template that pulls in dynamic_annotations so |
42 # we need to explictly link in the code for dynamic_annotations. | 43 # we need to explictly link in the code for dynamic_annotations. |
43 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 44 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
44 '../../out/gn_gyp/third_party/re2/re2.gyp:re2', | |
45 ], | 45 ], |
46 'conditions': [ | 46 'conditions': [ |
47 ['use_snappy', { | 47 ['use_snappy', { |
48 'dependencies': [ | 48 'dependencies': [ |
49 '../../third_party/snappy/snappy.gyp:snappy', | 49 '../../third_party/snappy/snappy.gyp:snappy', |
50 ], | 50 ], |
51 }], | 51 }], |
52 ], | 52 ], |
53 'direct_dependent_settings': { | 53 'direct_dependent_settings': { |
54 'include_dirs': [ | 54 'include_dirs': [ |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 ], | 365 ], |
366 }, | 366 }, |
367 ], | 367 ], |
368 } | 368 } |
369 | 369 |
370 # Local Variables: | 370 # Local Variables: |
371 # tab-width:2 | 371 # tab-width:2 |
372 # indent-tabs-mode:nil | 372 # indent-tabs-mode:nil |
373 # End: | 373 # End: |
374 # vim: set expandtab tabstop=2 shiftwidth=2: | 374 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |