| 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/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "//ui/wm", | 122 "//ui/wm", |
| 123 ] | 123 ] |
| 124 } | 124 } |
| 125 | 125 |
| 126 if (use_aura || is_mac) { | 126 if (use_aura || is_mac) { |
| 127 deps += [ "//ui/compositor" ] | 127 deps += [ "//ui/compositor" ] |
| 128 } | 128 } |
| 129 | 129 |
| 130 if (use_ozone) { | 130 if (use_ozone) { |
| 131 deps += [ "//ui/ozone" ] | 131 deps += [ "//ui/ozone" ] |
| 132 } else { |
| 133 sources -= [ |
| 134 "test_native_pixmap_manager_ozone.cc", |
| 135 "test_native_pixmap_manager_ozone.h", |
| 136 ] |
| 132 } | 137 } |
| 133 | 138 |
| 134 if (is_win) { | 139 if (is_win) { |
| 135 deps += [ | 140 deps += [ |
| 136 "//content:startup_helper_win", | 141 "//content:startup_helper_win", |
| 137 "//third_party/iaccessible2", | 142 "//third_party/iaccessible2", |
| 138 ] | 143 ] |
| 139 } | 144 } |
| 140 | 145 |
| 141 if (!is_android && !is_ios) { | 146 if (!is_android && !is_ios) { |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 "//gpu/blink", | 700 "//gpu/blink", |
| 696 "//testing/gtest", | 701 "//testing/gtest", |
| 697 "//third_party/WebKit/public:blink", | 702 "//third_party/WebKit/public:blink", |
| 698 "//ui/base", | 703 "//ui/base", |
| 699 "//ui/gfx", | 704 "//ui/gfx", |
| 700 "//ui/gfx/geometry", | 705 "//ui/gfx/geometry", |
| 701 "//ui/gl", | 706 "//ui/gl", |
| 702 ] | 707 ] |
| 703 } | 708 } |
| 704 } | 709 } |
| OLD | NEW |