summaryrefslogtreecommitdiffstats
path: root/BUILD.gn
blob: fb2264f46caf366d5af039434e5de0e818f7f93a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# This is the root build file for GN. GN will start processing by loading this
# file, and recursively load all dependencies until all dependencies are either
# resolved or known not to exist (which will cause the build to fail). So if
# you add a new build file, there must be some path of dependencies from this
# file to your new one or GN won't know about it.

# In GN, a "group" is a dummy target that just lists other targets.
group("root") {
  # Note that some dependencies are commented out. These are things that are
  # currently written but not hooked up to the build yet. They may need to be
  # completed or possibly just tested and then re-enabled.
  deps = [
    # This is a temporary test of the not-yet-complete NaCl cross-compilation.
    #"//base(//build/toolchain/nacl:x86_newlib)",

    "//apps/common/api:apps_api",
    #"//chrome",
    "//components/language_usage_metrics",
    "//components/metrics",
    "//components/navigation_metrics",
    "//components/onc",
    "//components/os_crypt",
    "//components/startup_metric_utils",
    "//components/resources:components_resources",
    "//components/translate:translate_core_browser",
    "//components/translate:translate_core_common",
    "//components/url_matcher",
    "//crypto",
    "//device/usb",
    #"//extensions/common/api:extensions_api",
    "//gpu/command_buffer/client",
    "//ipc",
    "//mojo",
    "//net",
    #"//sdch",
    "//skia",
    #"//third_party/WebKit/Source/platform",
    "//third_party/brotli",
    "//third_party/iccjpeg",
    "//third_party/icu",
    "//third_party/leveldatabase",
    "//third_party/libpng",
    "//third_party/libusb",
    "//third_party/libwebm",
    "//third_party/libwebp",
    "//third_party/ots",
    "//third_party/qcms",
    "//third_party/re2",
    "//third_party/smhasher:cityhash",
    "//third_party/smhasher:murmurhash3",
    "//third_party/smhasher:pmurhash",
    "//third_party/WebKit/Source/wtf",
    "//third_party/zlib",
    "//third_party:jpeg",
    "//tools/gn",
    "//ui/base:ui_base",
    "//ui/base/strings",
    "//ui/events",
    "//ui/gfx",
    "//ui/resources",
    "//ui/surface",
    "//url",
  ]

  if (is_linux) {
    deps += [
      "//third_party/freetype2",
    ]
  }

  if (is_android) {
    deps -= [
      "//components/os_crypt",
      "//crypto",
      "//gpu/command_buffer/client",  # Needs Skia.
      "//net",
      "//skia",  # Needs some ARM stuff
      "//third_party/libusb",
      "//third_party/WebKit/Source/wtf",  # TODO(brettw) re-enable for Android.
      "//tools/gn",
      "//ui/base:ui_base",
      "//ui/events",
      "//ui/gfx",
      "//ui/surface",  # TODO(brettw): Skia does not build on Android yet.
                       # Re-enable this when skia is fixed.
    ]
  }
}