| 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 22 matching lines...) Expand all Loading... |
| 33 "//content/public/common", | 33 "//content/public/common", |
| 34 "//crypto", | 34 "//crypto", |
| 35 "//device/usb", | 35 "//device/usb", |
| 36 #"//extensions/common/api:extensions_api", | 36 #"//extensions/common/api:extensions_api", |
| 37 "//gin", | 37 "//gin", |
| 38 "//gpu/command_buffer/client", | 38 "//gpu/command_buffer/client", |
| 39 "//gpu/command_buffer/service", | 39 "//gpu/command_buffer/service", |
| 40 "//ipc", | 40 "//ipc", |
| 41 "//mojo", | 41 "//mojo", |
| 42 "//net", | 42 "//net", |
| 43 "//ppapi:ppapi_c", |
| 43 #"//sdch", | 44 #"//sdch", |
| 44 "//skia", | 45 "//skia", |
| 45 "//third_party/brotli", | 46 "//third_party/brotli", |
| 46 "//third_party/harfbuzz-ng", | 47 "//third_party/harfbuzz-ng", |
| 47 "//third_party/iccjpeg", | 48 "//third_party/iccjpeg", |
| 48 "//third_party/icu", | 49 "//third_party/icu", |
| 49 "//third_party/leveldatabase", | 50 "//third_party/leveldatabase", |
| 50 "//third_party/libpng", | 51 "//third_party/libpng", |
| 51 "//third_party/libusb", | 52 "//third_party/libusb", |
| 52 "//third_party/libwebm", | 53 "//third_party/libwebm", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 94 |
| 94 # This stuff all depends on ui/surface which requires some .class jni | 95 # This stuff all depends on ui/surface which requires some .class jni |
| 95 # generators (ui/gl/gl.gyp:surface_jni_headers). | 96 # generators (ui/gl/gl.gyp:surface_jni_headers). |
| 96 "//ui/gl", | 97 "//ui/gl", |
| 97 "//gpu/command_buffer/client", | 98 "//gpu/command_buffer/client", |
| 98 "//gpu/command_buffer/service", | 99 "//gpu/command_buffer/service", |
| 99 "//ui/surface", | 100 "//ui/surface", |
| 100 ] | 101 ] |
| 101 } | 102 } |
| 102 } | 103 } |
| OLD | NEW |