| 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 26 matching lines...) Expand all Loading... |
| 37 "//chrome/browser/devtools", | 37 "//chrome/browser/devtools", |
| 38 "//chrome/common", | 38 "//chrome/common", |
| 39 "//chrome/plugin", | 39 "//chrome/plugin", |
| 40 "//chrome/renderer", | 40 "//chrome/renderer", |
| 41 "//chrome/utility", | 41 "//chrome/utility", |
| 42 "//components:all_components", | 42 "//components:all_components", |
| 43 "//content", | 43 "//content", |
| 44 "//content/shell:content_shell", | 44 "//content/shell:content_shell", |
| 45 "//content/test:test_support", | 45 "//content/test:test_support", |
| 46 "//crypto", | 46 "//crypto", |
| 47 "//device/battery", | |
| 48 "//device/bluetooth", | 47 "//device/bluetooth", |
| 49 "//device/nfc", | 48 "//device/nfc", |
| 50 "//extensions/browser", | 49 "//extensions/browser", |
| 51 "//extensions/common", | 50 "//extensions/common", |
| 52 "//extensions/common/api", | 51 "//extensions/common/api", |
| 53 "//extensions/renderer", | 52 "//extensions/renderer", |
| 54 "//gin", | 53 "//gin", |
| 55 "//gpu", | 54 "//gpu", |
| 56 "//google_apis", | 55 "//google_apis", |
| 57 "//google_apis/gcm", | 56 "//google_apis/gcm", |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 ] | 248 ] |
| 250 } | 249 } |
| 251 | 250 |
| 252 # Non-mobile builds. | 251 # Non-mobile builds. |
| 253 if (!is_android && !is_ios) { | 252 if (!is_android && !is_ios) { |
| 254 deps += [ | 253 deps += [ |
| 255 "//device/usb", | 254 "//device/usb", |
| 256 ] | 255 ] |
| 257 } | 256 } |
| 258 } | 257 } |
| OLD | NEW |