| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "//ui/snapshot", | 95 "//ui/snapshot", |
| 96 "//ui/strings", | 96 "//ui/strings", |
| 97 "//ui/surface", | 97 "//ui/surface", |
| 98 "//url", | 98 "//url", |
| 99 "//v8:v8", | 99 "//v8:v8", |
| 100 "//webkit/browser:storage", | 100 "//webkit/browser:storage", |
| 101 "//webkit/child", | 101 "//webkit/child", |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 if (!is_win) { | 104 if (!is_win) { |
| 105 deps += [ "//breakpad:symupload" ] | 105 # TODO(brettw) re-enable once this compiles reliably. |
| 106 #deps += [ "//breakpad:symupload" ] |
| 106 } | 107 } |
| 107 | 108 |
| 108 if (is_linux) { | 109 if (is_linux) { |
| 109 deps += [ | 110 deps += [ |
| 110 "//dbus", | 111 "//dbus", |
| 111 "//third_party/fontconfig", | 112 "//third_party/fontconfig", |
| 112 "//third_party/freetype2", | 113 "//third_party/freetype2", |
| 113 ] | 114 ] |
| 114 } | 115 } |
| 115 | 116 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 ] | 161 ] |
| 161 } | 162 } |
| 162 | 163 |
| 163 if (use_ozone) { | 164 if (use_ozone) { |
| 164 deps += [ | 165 deps += [ |
| 165 "//ui/events/ozone:events_ozone", | 166 "//ui/events/ozone:events_ozone", |
| 166 "//ui/events/ozone:events_ozone_evdev", | 167 "//ui/events/ozone:events_ozone_evdev", |
| 167 ] | 168 ] |
| 168 } | 169 } |
| 169 } | 170 } |
| OLD | NEW |