| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build_overrides/v8.gni") | 9 import("//build_overrides/v8.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 deps += [ "//ui/ozone" ] | 148 deps += [ "//ui/ozone" ] |
| 149 } | 149 } |
| 150 | 150 |
| 151 if (is_win) { | 151 if (is_win) { |
| 152 deps += [ | 152 deps += [ |
| 153 "//content:sandbox_helper_win", | 153 "//content:sandbox_helper_win", |
| 154 "//third_party/iaccessible2", | 154 "//third_party/iaccessible2", |
| 155 ] | 155 ] |
| 156 } | 156 } |
| 157 | 157 |
| 158 if (is_android) { | 158 if (is_android && !use_aura) { |
| 159 deps += [ | 159 deps += [ |
| 160 "//ui/android", | 160 "//ui/android", |
| 161 "//ui/shell_dialogs", | 161 "//ui/shell_dialogs", |
| 162 ] | 162 ] |
| 163 } | 163 } |
| 164 | 164 |
| 165 if (is_win) { | 165 if (is_win) { |
| 166 deps += [ "//sandbox" ] | 166 deps += [ "//sandbox" ] |
| 167 } | 167 } |
| 168 } else { # is_ios | 168 } else { # is_ios |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 "//gpu/blink", | 857 "//gpu/blink", |
| 858 "//testing/gtest", | 858 "//testing/gtest", |
| 859 "//third_party/WebKit/public:blink", | 859 "//third_party/WebKit/public:blink", |
| 860 "//ui/base", | 860 "//ui/base", |
| 861 "//ui/gfx", | 861 "//ui/gfx", |
| 862 "//ui/gfx/geometry", | 862 "//ui/gfx/geometry", |
| 863 "//ui/gl", | 863 "//ui/gl", |
| 864 "//ui/gl:test_support", | 864 "//ui/gl:test_support", |
| 865 ] | 865 ] |
| 866 } | 866 } |
| OLD | NEW |