| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 is the root build file for GN. GN will start processing by loading this | 5 # This is the root build file for GN. GN will start processing by loading this |
| 6 # file, and recursively load all dependencies until all dependencies are either | 6 # file, and recursively load all dependencies until all dependencies are either |
| 7 # resolved or known not to exist (which will cause the build to fail). So if | 7 # resolved or known not to exist (which will cause the build to fail). So if |
| 8 # you add a new build file, there must be some path of dependencies from this | 8 # you add a new build file, there must be some path of dependencies from this |
| 9 # file to your new one or GN won't know about it. | 9 # file to your new one or GN won't know about it. |
| 10 | 10 |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "//ui/surface", | 137 "//ui/surface", |
| 138 "//ui/touch_selection", | 138 "//ui/touch_selection", |
| 139 "//ui/views", | 139 "//ui/views", |
| 140 "//ui/views/controls/webview", | 140 "//ui/views/controls/webview", |
| 141 "//ui/web_dialogs", | 141 "//ui/web_dialogs", |
| 142 "//url", | 142 "//url", |
| 143 "//v8:v8", | 143 "//v8:v8", |
| 144 ] | 144 ] |
| 145 deps += root_extra_deps | 145 deps += root_extra_deps |
| 146 | 146 |
| 147 if (enable_extensions) { | 147 # TODO(GYP): Get this working on the mac? |
| 148 if (enable_extensions && !is_mac) { |
| 148 deps += [ "//extensions/shell:app_shell_unittests" ] | 149 deps += [ "//extensions/shell:app_shell_unittests" ] |
| 149 } | 150 } |
| 150 | 151 |
| 151 if (!is_win) { | 152 if (!is_win) { |
| 152 deps += [ "//breakpad:symupload" ] | 153 deps += [ "//breakpad:symupload" ] |
| 153 } | 154 } |
| 154 | 155 |
| 155 if (is_linux) { | 156 if (is_linux) { |
| 156 deps += [ | 157 deps += [ |
| 157 "//dbus", | 158 "//dbus", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 "//ui/views", | 309 "//ui/views", |
| 309 "//ui/views/controls/webview", | 310 "//ui/views/controls/webview", |
| 310 "//ui/web_dialogs", | 311 "//ui/web_dialogs", |
| 311 ] | 312 ] |
| 312 } | 313 } |
| 313 | 314 |
| 314 if (is_mac || is_ios) { | 315 if (is_mac || is_ios) { |
| 315 deps -= [ "//ui/touch_selection" ] | 316 deps -= [ "//ui/touch_selection" ] |
| 316 } | 317 } |
| 317 } | 318 } |
| OLD | NEW |