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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "//third_party/brotli", | 53 "//third_party/brotli", |
54 "//third_party/cacheinvalidation", | 54 "//third_party/cacheinvalidation", |
55 "//third_party/ffmpeg", | 55 "//third_party/ffmpeg", |
56 "//third_party/flac", | 56 "//third_party/flac", |
57 "//third_party/harfbuzz-ng", | 57 "//third_party/harfbuzz-ng", |
58 "//third_party/hunspell", | 58 "//third_party/hunspell", |
59 "//third_party/iccjpeg", | 59 "//third_party/iccjpeg", |
60 "//third_party/icu", | 60 "//third_party/icu", |
61 "//third_party/leveldatabase", | 61 "//third_party/leveldatabase", |
62 "//third_party/libaddressinput", | 62 "//third_party/libaddressinput", |
| 63 "//third_party/libphonenumber", |
63 "//third_party/libpng", | 64 "//third_party/libpng", |
64 "//third_party/libsrtp", | 65 "//third_party/libsrtp", |
65 "//third_party/libusb", | 66 "//third_party/libusb", |
66 "//third_party/libwebm", | 67 "//third_party/libwebm", |
67 "//third_party/libwebp", | 68 "//third_party/libwebp", |
68 "//third_party/libxslt", | 69 "//third_party/libxslt", |
69 "//third_party/libyuv", | 70 "//third_party/libyuv", |
70 "//third_party/lzma_sdk", | 71 "//third_party/lzma_sdk", |
71 "//third_party/mesa", | 72 "//third_party/mesa", |
72 "//third_party/opus", | 73 "//third_party/opus", |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 ] | 168 ] |
168 } | 169 } |
169 | 170 |
170 if (use_ozone) { | 171 if (use_ozone) { |
171 deps += [ | 172 deps += [ |
172 "//ui/events/ozone:events_ozone", | 173 "//ui/events/ozone:events_ozone", |
173 "//ui/events/ozone:events_ozone_evdev", | 174 "//ui/events/ozone:events_ozone_evdev", |
174 ] | 175 ] |
175 } | 176 } |
176 } | 177 } |
OLD | NEW |