Chromium Code Reviews| 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 "//net", | 53 "//net", |
| 54 "//pdf", | 54 "//pdf", |
| 55 "//ppapi:ppapi_c", | 55 "//ppapi:ppapi_c", |
| 56 "//printing", | 56 "//printing", |
| 57 "//sandbox", | 57 "//sandbox", |
| 58 "//sdch", | 58 "//sdch", |
| 59 "//skia", | 59 "//skia", |
| 60 "//sql", | 60 "//sql", |
| 61 "//third_party/angle:translator", | 61 "//third_party/angle:translator", |
| 62 "//third_party/brotli", | 62 "//third_party/brotli", |
| 63 "//third_party/flac", | |
| 63 "//third_party/harfbuzz-ng", | 64 "//third_party/harfbuzz-ng", |
| 64 "//third_party/iccjpeg", | 65 "//third_party/iccjpeg", |
| 65 "//third_party/icu", | 66 "//third_party/icu", |
| 66 "//third_party/leveldatabase", | 67 "//third_party/leveldatabase", |
| 67 "//third_party/libpng", | 68 "//third_party/libpng", |
| 68 "//third_party/libusb", | 69 "//third_party/libusb", |
| 69 "//third_party/libwebm", | 70 "//third_party/libwebm", |
| 70 "//third_party/libwebp", | 71 "//third_party/libwebp", |
| 71 "//third_party/libyuv", | 72 "//third_party/libyuv", |
| 72 "//third_party/mesa", | 73 "//third_party/mesa", |
| 73 "//third_party/ots", | 74 "//third_party/ots", |
| 74 "//third_party/protobuf:protobuf_lite", | 75 "//third_party/protobuf:protobuf_lite", |
| 75 "//third_party/qcms", | 76 "//third_party/qcms", |
| 76 "//third_party/re2", | 77 "//third_party/re2", |
| 77 "//third_party/smhasher:cityhash", | 78 "//third_party/smhasher:cityhash", |
| 78 "//third_party/smhasher:murmurhash3", | 79 "//third_party/smhasher:murmurhash3", |
| 79 "//third_party/smhasher:pmurhash", | 80 "//third_party/smhasher:pmurhash", |
| 81 "//third_party/speex", | |
|
tfarina
2014/06/13 19:11:49
I said on my Snippets I was going to hook it up. O
brettw
2014/06/13 23:36:25
Whoops sorry! I was just blindly going through dep
| |
| 80 "//third_party/WebKit/public:blink_headers", | 82 "//third_party/WebKit/public:blink_headers", |
| 81 "//third_party/WebKit/Source/wtf", | 83 "//third_party/WebKit/Source/wtf", |
| 82 "//third_party/zlib", | 84 "//third_party/zlib", |
| 83 "//third_party:jpeg", | 85 "//third_party:jpeg", |
| 84 "//tools/gn", | 86 "//tools/gn", |
| 85 "//ui/aura", | 87 "//ui/aura", |
| 86 "//ui/accessibility", | 88 "//ui/accessibility", |
| 87 "//ui/base", | 89 "//ui/base", |
| 88 "//ui/events", | 90 "//ui/events", |
| 89 "//ui/gfx", | 91 "//ui/gfx", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 143 ] | 145 ] |
| 144 } | 146 } |
| 145 | 147 |
| 146 if (use_ozone) { | 148 if (use_ozone) { |
| 147 deps += [ | 149 deps += [ |
| 148 "//ui/events/ozone:events_ozone", | 150 "//ui/events/ozone:events_ozone", |
| 149 "//ui/events/ozone:events_ozone_evdev", | 151 "//ui/events/ozone:events_ozone_evdev", |
| 150 ] | 152 ] |
| 151 } | 153 } |
| 152 } | 154 } |
| OLD | NEW |