[email protected] | f0e7ff88 | 2013-12-26 21:23:09 | [diff] [blame] | 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 |
| 3 | # found in the LICENSE file. |
| 4 | |
| 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 |
| 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 |
| 9 | # file to your new one or GN won't know about it. |
| 10 | |
[email protected] | 378b4f0 | 2014-06-10 15:58:45 | [diff] [blame] | 11 | import("//build/config/ui.gni") |
cjhopman | ca675d3e | 2014-10-24 03:50:45 | [diff] [blame] | 12 | if (is_android) { |
| 13 | import("//build/config/android/config.gni") |
| 14 | } |
[email protected] | 378b4f0 | 2014-06-10 15:58:45 | [diff] [blame] | 15 | |
brettw | b84b2947 | 2014-10-22 22:58:45 | [diff] [blame] | 16 | declare_args() { |
| 17 | # A list of extra dependencies to add to the root target. This allows a |
| 18 | # checkout to add additional targets without explicitly changing any checked- |
| 19 | # in files. |
| 20 | root_extra_deps = [] |
| 21 | } |
| 22 | |
[email protected] | f0e7ff88 | 2013-12-26 21:23:09 | [diff] [blame] | 23 | # In GN, a "group" is a dummy target that just lists other targets. |
| 24 | group("root") { |
brettw | b80a148e | 2014-09-04 16:54:13 | [diff] [blame] | 25 | # This should not be linked into production and depends on test targets. |
| 26 | testonly = true |
| 27 | |
[email protected] | dd316f6 | 2014-03-18 20:27:26 | [diff] [blame] | 28 | # Note that some dependencies are commented out. These are things that are |
| 29 | # currently written but not hooked up to the build yet. They may need to be |
| 30 | # completed or possibly just tested and then re-enabled. |
[email protected] | f0e7ff88 | 2013-12-26 21:23:09 | [diff] [blame] | 31 | deps = [ |
[email protected] | f560790 | 2014-08-21 19:14:57 | [diff] [blame] | 32 | "//apps", |
[email protected] | b27a3c7 | 2014-07-16 17:50:09 | [diff] [blame] | 33 | "//ash", |
[email protected] | d05751a2 | 2014-05-29 20:54:24 | [diff] [blame] | 34 | "//cc", |
[email protected] | 3856462 | 2014-08-19 02:47:18 | [diff] [blame] | 35 | "//cc/blink", |
[email protected] | a3c13435 | 2014-07-11 19:23:19 | [diff] [blame] | 36 | "//chrome/browser", |
[email protected] | cb75c09 | 2014-06-24 19:31:34 | [diff] [blame] | 37 | "//chrome/browser/devtools", |
[email protected] | 7f2b78ed | 2014-06-20 04:26:55 | [diff] [blame] | 38 | "//chrome/common", |
[email protected] | 3b816b9 | 2014-06-23 22:28:15 | [diff] [blame] | 39 | "//chrome/plugin", |
[email protected] | 58e3684 | 2014-06-21 15:55:03 | [diff] [blame] | 40 | "//chrome/renderer", |
Brett Wilson | 32ce17a | 2014-11-10 17:45:30 | [diff] [blame] | 41 | "//chrome/test", |
| 42 | "//chrome/tools", |
[email protected] | 3b816b9 | 2014-06-23 22:28:15 | [diff] [blame] | 43 | "//chrome/utility", |
[email protected] | 7a1da46 | 2014-06-20 21:40:01 | [diff] [blame] | 44 | "//components:all_components", |
[email protected] | dab154ee | 2014-06-13 23:48:50 | [diff] [blame] | 45 | "//content", |
[email protected] | 6b9028ab | 2014-07-23 17:15:38 | [diff] [blame] | 46 | "//content/shell:content_shell", |
[email protected] | df82b4f5 | 2014-07-23 20:21:50 | [diff] [blame] | 47 | "//content/test:test_support", |
[email protected] | 7a7e085 | 2014-04-14 23:25:13 | [diff] [blame] | 48 | "//crypto", |
ppi | 2438a3e | 2014-10-28 21:55:10 | [diff] [blame] | 49 | "//device/battery", |
[email protected] | abd4b68 | 2014-07-16 20:26:30 | [diff] [blame] | 50 | "//device/bluetooth", |
| 51 | "//device/nfc", |
timvolodine | 8e29c14 | 2014-12-06 13:49:01 | [diff] [blame] | 52 | "//device/vibration", |
[email protected] | 6f9866a | 2014-07-26 20:06:35 | [diff] [blame] | 53 | "//extensions/browser", |
[email protected] | 4205a96e | 2014-07-23 14:08:18 | [diff] [blame] | 54 | "//extensions/common", |
[email protected] | abd4b68 | 2014-07-16 20:26:30 | [diff] [blame] | 55 | "//extensions/common/api", |
[email protected] | 60e3e718 | 2014-07-28 23:14:03 | [diff] [blame] | 56 | "//extensions/renderer", |
[email protected] | 8f2cee0 | 2014-05-22 23:19:25 | [diff] [blame] | 57 | "//gin", |
[email protected] | d05751a2 | 2014-05-29 20:54:24 | [diff] [blame] | 58 | "//gpu", |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 59 | "//google_apis", |
[email protected] | abd4b68 | 2014-07-16 20:26:30 | [diff] [blame] | 60 | "//google_apis/gcm", |
[email protected] | 517d528 | 2014-04-02 17:03:30 | [diff] [blame] | 61 | "//ipc", |
[email protected] | 6486088 | 2014-08-04 23:44:17 | [diff] [blame] | 62 | "//ipc/mojo", |
ajwong | f7b1cb69 | 2014-08-23 21:36:22 | [diff] [blame] | 63 | "//jingle:notifier", |
[email protected] | 0d0bd38 | 2014-07-16 20:14:06 | [diff] [blame] | 64 | "//media", |
acolwell | 9e0840d | 2014-09-06 19:01:32 | [diff] [blame] | 65 | "//media/blink", |
[email protected] | c610119 | 2014-07-31 08:56:26 | [diff] [blame] | 66 | "//media/cast", |
tim | 09f86c05 | 2014-09-18 22:10:14 | [diff] [blame] | 67 | "//media/mojo", |
[email protected] | 9a1526b | 2014-04-30 05:27:06 | [diff] [blame] | 68 | "//mojo", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 69 | "//net", |
[email protected] | 7131920 | 2014-06-05 23:19:28 | [diff] [blame] | 70 | "//pdf", |
[email protected] | 240e303 | 2014-05-27 20:15:20 | [diff] [blame] | 71 | "//ppapi:ppapi_c", |
[email protected] | fc2020f | 2014-06-04 18:09:39 | [diff] [blame] | 72 | "//printing", |
Brett Wilson | 1c69399 | 2014-08-25 19:10:01 | [diff] [blame] | 73 | "//remoting/client/plugin", |
[email protected] | 543f171c | 2014-06-04 22:00:41 | [diff] [blame] | 74 | "//sandbox", |
[email protected] | c7e9f494 | 2014-06-02 17:40:30 | [diff] [blame] | 75 | "//sdch", |
[email protected] | 1b87123d | 2014-04-12 10:37:19 | [diff] [blame] | 76 | "//skia", |
pilgrim | 4af8c21 | 2014-09-05 17:30:15 | [diff] [blame] | 77 | "//storage/browser", |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 78 | "//sql", |
[email protected] | f8ae9a4f | 2014-08-07 00:05:20 | [diff] [blame] | 79 | "//sync", |
[email protected] | f9a3206 | 2014-06-21 20:20:35 | [diff] [blame] | 80 | "//third_party/WebKit/public:all_blink", |
[email protected] | 3a98c81 | 2014-05-30 00:52:36 | [diff] [blame] | 81 | "//third_party/angle:translator", |
[email protected] | cceca60d | 2014-05-13 02:23:34 | [diff] [blame] | 82 | "//third_party/brotli", |
[email protected] | 797b2504 | 2014-07-01 23:54:17 | [diff] [blame] | 83 | "//third_party/cacheinvalidation", |
[email protected] | b9f4c68 | 2014-07-10 22:00:37 | [diff] [blame] | 84 | "//third_party/cld", |
| 85 | "//third_party/cld_2", |
[email protected] | 822d467b | 2014-06-19 19:00:43 | [diff] [blame] | 86 | "//third_party/ffmpeg", |
[email protected] | 5c10cca4 | 2014-06-12 19:37:28 | [diff] [blame] | 87 | "//third_party/flac", |
[email protected] | c67679f | 2014-05-21 16:53:19 | [diff] [blame] | 88 | "//third_party/harfbuzz-ng", |
[email protected] | f9a3206 | 2014-06-21 20:20:35 | [diff] [blame] | 89 | "//third_party/hunspell", |
[email protected] | cceca60d | 2014-05-13 02:23:34 | [diff] [blame] | 90 | "//third_party/iccjpeg", |
[email protected] | cb3421f | 2014-04-14 00:42:48 | [diff] [blame] | 91 | "//third_party/icu", |
[email protected] | 1b87123d | 2014-04-12 10:37:19 | [diff] [blame] | 92 | "//third_party/leveldatabase", |
[email protected] | fca567b | 2014-07-02 17:37:34 | [diff] [blame] | 93 | "//third_party/libphonenumber", |
ajwong | f7b1cb69 | 2014-08-23 21:36:22 | [diff] [blame] | 94 | "//third_party/libjingle", |
[email protected] | a915508 | 2014-04-06 06:55:08 | [diff] [blame] | 95 | "//third_party/libpng", |
[email protected] | 0133ad7 | 2014-07-01 07:03:25 | [diff] [blame] | 96 | "//third_party/libsrtp", |
[email protected] | 1d6b606 | 2014-04-08 17:42:14 | [diff] [blame] | 97 | "//third_party/libusb", |
[email protected] | f087aad | 2014-05-16 18:16:13 | [diff] [blame] | 98 | "//third_party/libwebm", |
[email protected] | 4b08b34 | 2014-04-16 03:01:03 | [diff] [blame] | 99 | "//third_party/libwebp", |
[email protected] | d62c51e | 2014-06-12 21:56:11 | [diff] [blame] | 100 | "//third_party/libxslt", |
brettw | bf20b73 | 2014-09-16 23:57:41 | [diff] [blame] | 101 | "//third_party/libvpx", |
[email protected] | 543f171c | 2014-06-04 22:00:41 | [diff] [blame] | 102 | "//third_party/libyuv", |
[email protected] | dab154ee | 2014-06-13 23:48:50 | [diff] [blame] | 103 | "//third_party/lzma_sdk", |
[email protected] | f1782d9 | 2014-06-03 23:14:20 | [diff] [blame] | 104 | "//third_party/mesa", |
[email protected] | 1da2cde | 2014-07-01 14:16:36 | [diff] [blame] | 105 | "//third_party/opus", |
[email protected] | cceca60d | 2014-05-13 02:23:34 | [diff] [blame] | 106 | "//third_party/ots", |
[email protected] | ff6d096 | 2014-05-22 23:21:23 | [diff] [blame] | 107 | "//third_party/protobuf:protobuf_lite", |
[email protected] | cceca60d | 2014-05-13 02:23:34 | [diff] [blame] | 108 | "//third_party/qcms", |
[email protected] | a915508 | 2014-04-06 06:55:08 | [diff] [blame] | 109 | "//third_party/re2", |
[email protected] | 7b31c83 | 2014-04-09 02:08:44 | [diff] [blame] | 110 | "//third_party/smhasher:cityhash", |
| 111 | "//third_party/smhasher:murmurhash3", |
| 112 | "//third_party/smhasher:pmurhash", |
[email protected] | 171e3ad | 2014-06-26 23:11:12 | [diff] [blame] | 113 | "//third_party/snappy", |
[email protected] | 5c10cca4 | 2014-06-12 19:37:28 | [diff] [blame] | 114 | "//third_party/speex", |
Brett Wilson | c63f22b | 2014-09-02 21:59:57 | [diff] [blame] | 115 | "//third_party/usrsctp", |
[email protected] | 82428884 | 2014-06-20 05:26:59 | [diff] [blame] | 116 | "//third_party/widevine/cdm:version_h", |
kjellander | 91966d30 | 2014-08-25 16:07:55 | [diff] [blame] | 117 | "//third_party/webrtc", |
[email protected] | a915508 | 2014-04-06 06:55:08 | [diff] [blame] | 118 | "//third_party/zlib", |
[email protected] | 71eb112 | 2014-05-06 04:25:26 | [diff] [blame] | 119 | "//third_party:jpeg", |
[email protected] | f0e7ff88 | 2013-12-26 21:23:09 | [diff] [blame] | 120 | "//tools/gn", |
[email protected] | 938c54d | 2014-07-23 21:15:14 | [diff] [blame] | 121 | "//tools/imagediff($host_toolchain)", |
tfarina | d22dcfd | 2014-09-09 17:21:19 | [diff] [blame] | 122 | "//ui/accessibility", |
[email protected] | 6e44c30 | 2014-07-22 21:51:37 | [diff] [blame] | 123 | "//ui/app_list", |
[email protected] | bd56a5b | 2014-06-07 04:09:29 | [diff] [blame] | 124 | "//ui/aura", |
[email protected] | 52140d88 | 2014-05-30 19:22:40 | [diff] [blame] | 125 | "//ui/base", |
[email protected] | a1d7d4f | 2014-07-16 21:33:36 | [diff] [blame] | 126 | "//ui/display", |
[email protected] | 06d4187 | 2014-04-09 01:18:44 | [diff] [blame] | 127 | "//ui/events", |
[email protected] | 07a8725b | 2014-04-10 21:16:59 | [diff] [blame] | 128 | "//ui/gfx", |
[email protected] | 1ea0175 | 2014-05-23 19:01:46 | [diff] [blame] | 129 | "//ui/gl", |
[email protected] | 604828c | 2014-07-02 20:39:12 | [diff] [blame] | 130 | "//ui/keyboard", |
[email protected] | a306aaa | 2014-05-24 13:21:50 | [diff] [blame] | 131 | "//ui/native_theme", |
[email protected] | 4c047c0 | 2014-04-21 22:41:19 | [diff] [blame] | 132 | "//ui/resources", |
[email protected] | 52140d88 | 2014-05-30 19:22:40 | [diff] [blame] | 133 | "//ui/snapshot", |
[email protected] | e3d7486 | 2014-05-18 14:12:27 | [diff] [blame] | 134 | "//ui/strings", |
[email protected] | 0311d4c | 2014-05-17 04:55:16 | [diff] [blame] | 135 | "//ui/surface", |
mohsen | f837da7c | 2014-12-09 19:01:34 | [diff] [blame^] | 136 | "//ui/touch_selection", |
[email protected] | cbba05a | 2014-07-16 00:08:26 | [diff] [blame] | 137 | "//ui/views", |
[email protected] | a1d7d4f | 2014-07-16 21:33:36 | [diff] [blame] | 138 | "//ui/views/controls/webview", |
[email protected] | 604828c | 2014-07-02 20:39:12 | [diff] [blame] | 139 | "//ui/web_dialogs", |
[email protected] | 4b6d32d | 2014-04-02 17:08:15 | [diff] [blame] | 140 | "//url", |
[email protected] | fa5e2bb | 2014-06-02 14:29:09 | [diff] [blame] | 141 | "//v8:v8", |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 142 | ] |
| 143 | deps += root_extra_deps |
[email protected] | fce5c3fe | 2014-04-10 21:13:05 | [diff] [blame] | 144 | |
[email protected] | 6fa82cc | 2014-06-18 20:33:07 | [diff] [blame] | 145 | if (!is_win) { |
[email protected] | f8d55d3 | 2014-06-19 20:02:29 | [diff] [blame] | 146 | deps += [ "//breakpad:symupload" ] |
[email protected] | 6fa82cc | 2014-06-18 20:33:07 | [diff] [blame] | 147 | } |
| 148 | |
[email protected] | fce5c3fe | 2014-04-10 21:13:05 | [diff] [blame] | 149 | if (is_linux) { |
| 150 | deps += [ |
[email protected] | 886323c | 2014-06-14 20:34:16 | [diff] [blame] | 151 | "//dbus", |
[email protected] | 8acc5f5 | 2014-05-31 22:16:30 | [diff] [blame] | 152 | "//third_party/fontconfig", |
[email protected] | fce5c3fe | 2014-04-10 21:13:05 | [diff] [blame] | 153 | "//third_party/freetype2", |
| 154 | ] |
| 155 | } |
[email protected] | 5a8d516 | 2014-04-12 01:19:16 | [diff] [blame] | 156 | |
[email protected] | 6b9028ab | 2014-07-23 17:15:38 | [diff] [blame] | 157 | if (use_x11) { |
| 158 | deps += [ "//tools/xdisplaycheck" ] |
| 159 | } |
| 160 | |
James Robinson | 060f2e3 | 2014-09-10 22:31:37 | [diff] [blame] | 161 | if (use_aura) { |
| 162 | deps += [ "//ui/wm" ] |
| 163 | } |
| 164 | |
[email protected] | a306aaa | 2014-05-24 13:21:50 | [diff] [blame] | 165 | if (is_win) { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 166 | deps += [ "//ui/metro_viewer" ] |
[email protected] | a306aaa | 2014-05-24 13:21:50 | [diff] [blame] | 167 | } |
| 168 | |
[email protected] | 2d6893a | 2014-06-02 19:16:36 | [diff] [blame] | 169 | if (is_win || is_mac || is_chromeos) { |
| 170 | # RLZ works on these platforms. |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 171 | deps += [ "//rlz:rlz_lib" ] |
[email protected] | 2d6893a | 2014-06-02 19:16:36 | [diff] [blame] | 172 | } |
| 173 | |
[email protected] | 137dff6d | 2014-06-12 19:35:55 | [diff] [blame] | 174 | if (cpu_arch == "x86" || cpu_arch == "x64") { |
| 175 | # YASM is x86/x64 only. |
| 176 | deps += [ "//third_party/yasm($host_toolchain)" ] |
| 177 | } |
| 178 | |
[email protected] | 5a8d516 | 2014-04-12 01:19:16 | [diff] [blame] | 179 | if (is_android) { |
[email protected] | 26046b5 | 2014-07-16 00:11:03 | [diff] [blame] | 180 | deps += [ |
cjhopman | 3151133 | 2014-10-23 01:05:02 | [diff] [blame] | 181 | "//base/android/linker:chromium_android_linker", |
cjhopman | 3d85c6d | 2014-11-18 03:39:38 | [diff] [blame] | 182 | "//build/android/gyp/test:hello_world", |
cjhopman | 3151133 | 2014-10-23 01:05:02 | [diff] [blame] | 183 | "//build/android/rezip", |
cjhopman | a19ca07 | 2014-09-16 02:45:33 | [diff] [blame] | 184 | "//third_party/openmax_dl/dl", |
cjhopman | cd7694af | 2014-09-08 00:00:04 | [diff] [blame] | 185 | "//content/shell/android:content_shell_apk", |
cjhopman | 11a68cb | 2014-10-13 22:47:54 | [diff] [blame] | 186 | "//chrome/android:chrome_shell_apk", |
cjhopman | 4fe114e | 2014-10-16 18:02:23 | [diff] [blame] | 187 | "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk", |
[email protected] | 684b229 | 2014-08-22 19:12:39 | [diff] [blame] | 188 | "//ui/android:ui_java", |
[email protected] | 684b229 | 2014-08-22 19:12:39 | [diff] [blame] | 189 | "//third_party/android_tools:android_gcm_java", |
| 190 | "//third_party/android_tools:uiautomator_java", |
| 191 | "//third_party/android_tools:android_support_v13_java", |
| 192 | "//third_party/android_tools:android_support_v7_appcompat_java", |
| 193 | "//third_party/android_tools:android_support_v7_mediarouter_java", |
mikecase | 85e83ed | 2014-12-08 19:18:29 | [diff] [blame] | 194 | "//third_party/mockito:mockito_java", |
[email protected] | 26046b5 | 2014-07-16 00:11:03 | [diff] [blame] | 195 | ] |
| 196 | |
cjhopman | ca675d3e | 2014-10-24 03:50:45 | [diff] [blame] | 197 | if (has_chrome_android_internal) { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 198 | deps += [ "//clank" ] |
cjhopman | ca675d3e | 2014-10-24 03:50:45 | [diff] [blame] | 199 | } |
| 200 | |
dpranke | cf8465db7 | 2014-11-10 23:51:22 | [diff] [blame] | 201 | # TODO(GYP): Move the targets in the rest of this block that still |
| 202 | # need to be made to work in the GN build to the bottom of the file |
| 203 | # so that all the remaining work is located in one place in the file. |
| 204 | # This block should contain only the targets that aren't actually |
| 205 | # needed on Android. |
| 206 | |
[email protected] | 5a8d516 | 2014-04-12 01:19:16 | [diff] [blame] | 207 | deps -= [ |
[email protected] | f560790 | 2014-08-21 19:14:57 | [diff] [blame] | 208 | "//apps", # Needs testing. |
James Robinson | 2ed4d69 | 2014-09-17 05:20:58 | [diff] [blame] | 209 | "//chrome/browser", |
| 210 | "//chrome/browser/devtools", |
| 211 | "//chrome/common", |
| 212 | "//chrome/plugin", |
| 213 | "//chrome/renderer", |
Brett Wilson | 32ce17a | 2014-11-10 17:45:30 | [diff] [blame] | 214 | "//chrome/test", |
| 215 | "//chrome/tools", |
James Robinson | 2ed4d69 | 2014-09-17 05:20:58 | [diff] [blame] | 216 | "//chrome/utility", |
James Robinson | 060f2e3 | 2014-09-10 22:31:37 | [diff] [blame] | 217 | "//content/shell:content_shell", |
[email protected] | 6f9866a | 2014-07-26 20:06:35 | [diff] [blame] | 218 | "//extensions/browser", |
[email protected] | 4205a96e | 2014-07-23 14:08:18 | [diff] [blame] | 219 | "//extensions/common", |
[email protected] | fb2799e | 2014-07-15 23:50:29 | [diff] [blame] | 220 | "//extensions/common/api", |
[email protected] | 60e3e718 | 2014-07-28 23:14:03 | [diff] [blame] | 221 | "//extensions/renderer", |
[email protected] | 7131920 | 2014-06-05 23:19:28 | [diff] [blame] | 222 | "//pdf", # Not compiled on Android in GYP yet, either. |
[email protected] | 240e303 | 2014-05-27 20:15:20 | [diff] [blame] | 223 | "//ppapi:ppapi_c", |
[email protected] | 5a8d516 | 2014-04-12 01:19:16 | [diff] [blame] | 224 | "//third_party/libusb", |
[email protected] | 604828c | 2014-07-02 20:39:12 | [diff] [blame] | 225 | "//ui/keyboard", # Blocked on content. |
[email protected] | d62c51e | 2014-06-12 21:56:11 | [diff] [blame] | 226 | |
| 227 | # Seems to not be compiled on Android. Otherwise it will need a config.h. |
| 228 | "//third_party/libxslt", |
| 229 | |
[email protected] | b27a3c7 | 2014-07-16 17:50:09 | [diff] [blame] | 230 | # Not relevant to Android. |
| 231 | "//ash", |
[email protected] | 5a8d516 | 2014-04-12 01:19:16 | [diff] [blame] | 232 | "//tools/gn", |
[email protected] | bd56a5b | 2014-06-07 04:09:29 | [diff] [blame] | 233 | "//ui/aura", |
[email protected] | a1d7d4f | 2014-07-16 21:33:36 | [diff] [blame] | 234 | "//ui/display", |
[email protected] | cbba05a | 2014-07-16 00:08:26 | [diff] [blame] | 235 | "//ui/views", |
[email protected] | a1d7d4f | 2014-07-16 21:33:36 | [diff] [blame] | 236 | "//ui/views/controls/webview", |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 237 | |
[email protected] | 31e0749c | 2014-06-12 19:55:11 | [diff] [blame] | 238 | # Fails on Android for unknown reasons. |
| 239 | "//third_party/flac", |
[email protected] | f8d55d3 | 2014-06-19 20:02:29 | [diff] [blame] | 240 | "//breakpad:symupload", |
[email protected] | 31e0749c | 2014-06-12 19:55:11 | [diff] [blame] | 241 | |
[email protected] | 44a5a36 | 2014-05-30 20:01:51 | [diff] [blame] | 242 | # Not tested on Android yet: |
[email protected] | abd4b68 | 2014-07-16 20:26:30 | [diff] [blame] | 243 | "//google_apis/gcm", |
Brett Wilson | 1c69399 | 2014-08-25 19:10:01 | [diff] [blame] | 244 | "//remoting/client/plugin", |
pilgrim | 4af8c21 | 2014-09-05 17:30:15 | [diff] [blame] | 245 | "//storage/browser", |
[email protected] | b9f4c68 | 2014-07-10 22:00:37 | [diff] [blame] | 246 | "//third_party/cld_2", |
[email protected] | 822d467b | 2014-06-19 19:00:43 | [diff] [blame] | 247 | "//third_party/ffmpeg", |
[email protected] | 6e44c30 | 2014-07-22 21:51:37 | [diff] [blame] | 248 | "//ui/app_list", |
[email protected] | 604828c | 2014-07-02 20:39:12 | [diff] [blame] | 249 | "//ui/web_dialogs", |
[email protected] | 5a8d516 | 2014-04-12 01:19:16 | [diff] [blame] | 250 | ] |
| 251 | } |
[email protected] | 378b4f0 | 2014-06-10 15:58:45 | [diff] [blame] | 252 | |
| 253 | if (use_ozone) { |
| 254 | deps += [ |
[email protected] | 4c5e36b | 2014-07-24 20:44:16 | [diff] [blame] | 255 | "//ui/ozone", |
| 256 | "//ui/ozone/demo", |
[email protected] | 378b4f0 | 2014-06-10 15:58:45 | [diff] [blame] | 257 | ] |
| 258 | } |
reillyg | d77718d | 2014-09-04 00:57:56 | [diff] [blame] | 259 | |
| 260 | # Non-mobile builds. |
| 261 | if (!is_android && !is_ios) { |
| 262 | deps += [ |
| 263 | "//device/usb", |
tsepez | 23eb1c2 | 2014-11-14 23:12:50 | [diff] [blame] | 264 | "//third_party/pdfium/samples", |
reillyg | d77718d | 2014-09-04 00:57:56 | [diff] [blame] | 265 | ] |
| 266 | } |
dpranke | 4376059 | 2014-11-08 02:59:57 | [diff] [blame] | 267 | |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 268 | # |
dpranke | cf8465db7 | 2014-11-10 23:51:22 | [diff] [blame] | 269 | # TODO(GYP): Make everything below this work in the GN build. |
| 270 | # |
| 271 | |
| 272 | if (is_mac) { |
dpranke | cf8465db7 | 2014-11-10 23:51:22 | [diff] [blame] | 273 | # TODO(dpranke): These are as-yet untriaged but need at least the above. |
dpranke | 4376059 | 2014-11-08 02:59:57 | [diff] [blame] | 274 | deps -= [ |
| 275 | "//apps", |
| 276 | "//ash", |
| 277 | "//chrome/browser", |
| 278 | "//chrome/browser/devtools", |
| 279 | "//chrome/common", |
| 280 | "//chrome/plugin", |
| 281 | "//chrome/renderer", |
dpranke | cf8465db7 | 2014-11-10 23:51:22 | [diff] [blame] | 282 | "//chrome/test", |
| 283 | "//chrome/utility", |
| 284 | "//components:all_components", |
| 285 | "//content/shell:content_shell", |
| 286 | "//extensions/browser", |
| 287 | "//extensions/common", |
| 288 | "//extensions/common/api", |
| 289 | "//extensions/renderer", |
| 290 | "//remoting/client/plugin", |
| 291 | "//third_party/usrsctp", |
dpranke | 380390f | 2014-11-21 06:08:53 | [diff] [blame] | 292 | "//ui/app_list", |
dpranke | cf8465db7 | 2014-11-10 23:51:22 | [diff] [blame] | 293 | "//ui/aura", |
| 294 | "//ui/keyboard", |
| 295 | "//ui/views", |
| 296 | "//ui/views/controls/webview", |
| 297 | "//ui/web_dialogs", |
| 298 | ] |
| 299 | } |
| 300 | |
mohsen | f837da7c | 2014-12-09 19:01:34 | [diff] [blame^] | 301 | if (is_mac || is_ios) { |
| 302 | deps -= [ |
| 303 | "//ui/touch_selection", |
| 304 | ] |
| 305 | } |
| 306 | |
dpranke | cf8465db7 | 2014-11-10 23:51:22 | [diff] [blame] | 307 | if (is_win) { |
| 308 | deps -= [ |
| 309 | "//apps", |
| 310 | "//ash", |
| 311 | "//chrome/browser", |
| 312 | "//chrome/browser/devtools", |
| 313 | "//chrome/common", |
| 314 | "//chrome/plugin", |
| 315 | "//chrome/renderer", |
| 316 | "//chrome/test", |
dpranke | 4376059 | 2014-11-08 02:59:57 | [diff] [blame] | 317 | "//chrome/utility", |
| 318 | "//components:all_components", |
| 319 | "//cc", |
| 320 | "//cc/blink", |
| 321 | "//content", |
| 322 | "//content/shell:content_shell", |
| 323 | "//content/test:test_support", |
| 324 | "//device/bluetooth", |
| 325 | "//extensions/browser", |
| 326 | "//extensions/common", |
| 327 | "//extensions/common/api", |
| 328 | "//extensions/renderer", |
| 329 | "//gpu", |
| 330 | "//google_apis", |
| 331 | "//google_apis/gcm", |
| 332 | "//jingle:notifier", |
| 333 | "//media", |
| 334 | "//media/blink", |
| 335 | "//media/cast", |
| 336 | "//media/mojo", |
| 337 | "//mojo", |
| 338 | "//pdf", |
| 339 | "//ppapi:ppapi_c", |
| 340 | "//printing", |
| 341 | "//remoting/client/plugin", |
| 342 | "//sandbox", |
| 343 | "//storage/browser", |
| 344 | "//sync", |
| 345 | "//third_party/WebKit/public:all_blink", |
| 346 | "//third_party/angle:translator", |
dpranke | de7d0dc | 2014-11-18 01:54:55 | [diff] [blame] | 347 | "//third_party/ffmpeg", |
dpranke | 4376059 | 2014-11-08 02:59:57 | [diff] [blame] | 348 | "//third_party/leveldatabase", |
| 349 | "//third_party/libjingle", |
| 350 | "//third_party/usrsctp", |
| 351 | "//third_party/webrtc", |
| 352 | "//ui/accessibility", |
| 353 | "//ui/app_list", |
| 354 | "//ui/aura", |
| 355 | "//ui/base", |
| 356 | "//ui/display", |
| 357 | "//ui/events", |
| 358 | "//ui/gfx", |
| 359 | "//ui/gl", |
| 360 | "//ui/keyboard", |
| 361 | "//ui/native_theme", |
| 362 | "//ui/snapshot", |
| 363 | "//ui/surface", |
mohsen | f837da7c | 2014-12-09 19:01:34 | [diff] [blame^] | 364 | "//ui/touch_selection", |
dpranke | 4376059 | 2014-11-08 02:59:57 | [diff] [blame] | 365 | "//ui/views", |
| 366 | "//ui/views/controls/webview", |
| 367 | "//ui/web_dialogs", |
| 368 | "//ui/wm", |
| 369 | ] |
| 370 | } |
[email protected] | f0e7ff88 | 2013-12-26 21:23:09 | [diff] [blame] | 371 | } |