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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "//extensions/browser", | 51 "//extensions/browser", |
52 "//extensions/common", | 52 "//extensions/common", |
53 "//extensions/common/api", | 53 "//extensions/common/api", |
54 "//extensions/renderer", | 54 "//extensions/renderer", |
55 "//gin", | 55 "//gin", |
56 "//gpu", | 56 "//gpu", |
57 "//google_apis", | 57 "//google_apis", |
58 "//google_apis/gcm", | 58 "//google_apis/gcm", |
59 "//ipc", | 59 "//ipc", |
60 "//ipc/mojo", | 60 "//ipc/mojo", |
| 61 "//jingle:notifier", |
61 "//media", | 62 "//media", |
62 "//media/cast", | 63 "//media/cast", |
63 "//mojo", | 64 "//mojo", |
64 "//net", | 65 "//net", |
65 "//pdf", | 66 "//pdf", |
66 "//ppapi:ppapi_c", | 67 "//ppapi:ppapi_c", |
67 "//printing", | 68 "//printing", |
68 "//sandbox", | 69 "//sandbox", |
69 "//sdch", | 70 "//sdch", |
70 "//skia", | 71 "//skia", |
71 "//sql", | 72 "//sql", |
72 "//sync", | 73 "//sync", |
73 "//third_party/WebKit/public:all_blink", | 74 "//third_party/WebKit/public:all_blink", |
74 "//third_party/angle:translator", | 75 "//third_party/angle:translator", |
75 "//third_party/brotli", | 76 "//third_party/brotli", |
76 "//third_party/cacheinvalidation", | 77 "//third_party/cacheinvalidation", |
77 "//third_party/cld", | 78 "//third_party/cld", |
78 "//third_party/cld_2", | 79 "//third_party/cld_2", |
79 "//third_party/ffmpeg", | 80 "//third_party/ffmpeg", |
80 "//third_party/flac", | 81 "//third_party/flac", |
81 "//third_party/harfbuzz-ng", | 82 "//third_party/harfbuzz-ng", |
82 "//third_party/hunspell", | 83 "//third_party/hunspell", |
83 "//third_party/iccjpeg", | 84 "//third_party/iccjpeg", |
84 "//third_party/icu", | 85 "//third_party/icu", |
85 "//third_party/leveldatabase", | 86 "//third_party/leveldatabase", |
86 "//third_party/libaddressinput", | 87 "//third_party/libaddressinput", |
87 "//third_party/libphonenumber", | 88 "//third_party/libphonenumber", |
| 89 "//third_party/libjingle", |
88 "//third_party/libpng", | 90 "//third_party/libpng", |
89 "//third_party/libsrtp", | 91 "//third_party/libsrtp", |
90 "//third_party/libusb", | 92 "//third_party/libusb", |
91 "//third_party/libwebm", | 93 "//third_party/libwebm", |
92 "//third_party/libwebp", | 94 "//third_party/libwebp", |
93 "//third_party/libxslt", | 95 "//third_party/libxslt", |
94 "//third_party/libyuv", | 96 "//third_party/libyuv", |
95 "//third_party/lzma_sdk", | 97 "//third_party/lzma_sdk", |
96 "//third_party/mesa", | 98 "//third_party/mesa", |
97 "//third_party/opus", | 99 "//third_party/opus", |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 | 240 |
239 if (use_ozone) { | 241 if (use_ozone) { |
240 deps += [ | 242 deps += [ |
241 "//ui/ozone", | 243 "//ui/ozone", |
242 "//ui/ozone/demo", | 244 "//ui/ozone/demo", |
243 ] | 245 ] |
244 } | 246 } |
245 } | 247 } |
246 | 248 |
247 } | 249 } |
OLD | NEW |