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
|
# Copyright 2014 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.
import("//tools/grit/grit_rule.gni")
# Applied by targets internal to content.
config("content_implementation") {
defines = [ "CONTENT_IMPLEMENTATION" ]
}
grit("resources") {
source = "content_resources.grd"
}
# Stubs ------------------------------------------------------------------------
# TODO(brettw) remove this and add a proper dependency on libjingle once that
# target has been converted to GN. This config sets up the include directories
# so content can compile in the meantime.
config("libjingle_stub_config") {
include_dirs = [
"//third_party/libjingle/overrides",
"//third_party/libjingle/source",
"//third_party/libyuv/include",
"//third_party/usrsctp",
"//third_party/webrtc/overrides", # Must be before webrtc abd third_party.
"//third_party/webrtc",
"//third_party",
]
defines = [
"FEATURE_ENABLE_SSL",
"FEATURE_ENABLE_VOICEMAIL",
"EXPAT_RELATIVE_PATH",
"GTEST_RELATIVE_PATH",
"NO_MAIN_THREAD_WRAPPING",
"NO_SOUND_SYSTEM",
]
if (is_mac) {
defines += [ "OSX" ]
} else if (is_linux) {
defines += [ "LINUX" ]
} else if (is_android) {
defines += [ "ANDROID" ]
} else if (is_win) {
libs = [ "secur32.lib", "crypt32.lib", "iphlpapi.lib" ]
}
if (is_posix) {
defines += [ "POSIX" ]
}
if (is_chromeos) {
defines += [ "CHROMEOS" ]
}
}
# This config is a placeholder to set up the V8 include path while Blink is
# being worked on. Some targets include blink headers which include "v8.h",
# expecting //v8/include to be on the include search path. We need to track
# this down and set the include paths properly.
config("v8_stub_config") {
include_dirs = [ "//v8/include" ]
}
config("widevine_stub_config") {
# The real implementation does a copy rule to copy the header to the gen dir.
include_dirs = [ "//third_party/widevine/cdm" ]
}
|