| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # This file contains the common overrides for building Aura on Android. | 5 # This file contains the common overrides for building Aura on Android. |
| 6 # To enable Aura on Android, import this file from your gn args: | 6 # To enable Aura on Android, import this file from your gn args: |
| 7 # | 7 # |
| 8 # import("//build/args/aura_android.gni") | 8 # import("//build/args/aura_android.gni") |
| 9 | 9 |
| 10 target_os = "android" | 10 target_os = "android" |
| 11 | 11 |
| 12 # features.gni overrides | 12 # features.gni overrides |
| 13 enable_extensions = true | 13 enable_extensions = true |
| 14 enable_plugins = true | 14 enable_plugins = true |
| 15 | 15 |
| 16 # ui.gni overrides | 16 # ui.gni overrides |
| 17 use_aura = true | 17 use_aura = true |
| 18 android_java_ui = false |
| 18 toolkit_views = true | 19 toolkit_views = true |
| OLD | NEW |