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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 "//ui/resources", | 94 "//ui/resources", |
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) { |
| 105 deps += [ "//breakpad:symupload" ] |
| 106 } |
| 107 |
104 if (is_linux) { | 108 if (is_linux) { |
105 deps += [ | 109 deps += [ |
106 "//dbus", | 110 "//dbus", |
107 "//third_party/fontconfig", | 111 "//third_party/fontconfig", |
108 "//third_party/freetype2", | 112 "//third_party/freetype2", |
109 ] | 113 ] |
110 } | 114 } |
111 | 115 |
112 if (is_win) { | 116 if (is_win) { |
113 deps += [ | 117 deps += [ |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 ] | 160 ] |
157 } | 161 } |
158 | 162 |
159 if (use_ozone) { | 163 if (use_ozone) { |
160 deps += [ | 164 deps += [ |
161 "//ui/events/ozone:events_ozone", | 165 "//ui/events/ozone:events_ozone", |
162 "//ui/events/ozone:events_ozone_evdev", | 166 "//ui/events/ozone:events_ozone_evdev", |
163 ] | 167 ] |
164 } | 168 } |
165 } | 169 } |
OLD | NEW |