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

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

Issue 808493002: Allow leveldb to use snappy in WebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | no next file » | 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', {
11 'variables': {
12 # Snappy not used in Android WebView
13 # crbug.com/236780
14 'use_snappy': 0,
15 },
16 }],
17 ['OS=="android"', { 10 ['OS=="android"', {
18 'targets': [{ 11 'targets': [{
19 'target_name': 'env_chromium_unittests_apk', 12 'target_name': 'env_chromium_unittests_apk',
20 'type': 'none', 13 'type': 'none',
21 'dependencies': [ 14 'dependencies': [
22 '<(DEPTH)/base/base.gyp:base_java', 15 '<(DEPTH)/base/base.gyp:base_java',
23 'env_chromium_unittests', 16 'env_chromium_unittests',
24 ], 17 ],
25 'variables': { 18 'variables': {
26 'test_suite_name': 'env_chromium_unittests', 19 'test_suite_name': 'env_chromium_unittests',
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 ], 415 ],
423 }, 416 },
424 ], 417 ],
425 } 418 }
426 419
427 # Local Variables: 420 # Local Variables:
428 # tab-width:2 421 # tab-width:2
429 # indent-tabs-mode:nil 422 # indent-tabs-mode:nil
430 # End: 423 # End:
431 # vim: set expandtab tabstop=2 shiftwidth=2: 424 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698