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', { | |
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 Loading... |
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: |
OLD | NEW |