Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1398)

Side by Side Diff: third_party/leveldatabase/leveldatabase.gyp

Issue 142223002: Support -Goutput_dir=blahblah in GN-GYP hybrid mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: prefer command line over env if both are specified Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « gpu/gpu_config.gypi ('k') | third_party/libaddressinput/libaddressinput.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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:
OLDNEW
« no previous file with comments | « gpu/gpu_config.gypi ('k') | third_party/libaddressinput/libaddressinput.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698