blob: d5a9371c2a39024e0a7263b21d5d82e9432cb5d9 [file] [log] [blame]
# 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.
# TODO(GYP) enable chrome_multiple_dll support
is_chrome_multiple_dll = false
content_app_sources = [
"android/app_jni_registrar.cc",
"android/app_jni_registrar.h",
"android/child_process_service.cc",
"android/child_process_service.h",
"android/content_main.cc",
"android/content_main.h",
"android/library_loader_hooks.cc",
"content_main.cc",
"content_main_runner.cc",
"mojo/mojo_init.cc",
"mojo/mojo_init.h",
"startup_helper_win.cc",
]
content_app_deps = [
"//base",
"//base:i18n",
# This is needed by app/content_main_runner.cc
# TODO(brettw) this shouldn't be here, only final executables should be
# picking the allocator.
"//base/allocator",
"//content:export",
"//content/public/common:common_sources",
"//crypto",
"//ui/base",
"//ui/gfx",
"//ui/gfx/geometry",
]
if (is_win) {
content_app_deps += [ "//sandbox" ]
} else if (is_android) {
content_app_sources -= [ "content_main.cc" ]
content_app_deps += [
"//content/public/android:jni",
"//skia",
"//third_party/android_tools:cpu_features",
"//ui/android",
]
}
if (is_ios) {
content_app_sources -= [
"content_main.cc",
"mojo/mojo_init.cc",
"mojo/mojo_init.h",
]
} else {
content_app_deps += [
"//mojo/edk/system",
"//mojo/environment:chromium",
"//mojo/public/interfaces/application",
]
}
content_app_extra_configs = [
"//build/config/compiler:wexit_time_destructors",
"//content:content_implementation",
]
if (!is_chrome_multiple_dll) {
content_app_deps += [ "//content/gpu" ]
}
# This includes the app sources for both the browser and child processes.
source_set("both") {
# Only the public target should depend on this. All other targets (even
# internal content ones) should depend on the public one.
visibility = [ "//content/public/app:*" ]
sources = content_app_sources
configs += content_app_extra_configs
deps = content_app_deps
}
if (is_chrome_multiple_dll) {
# It doesn't make sense to do the browser/child dll split in component mode.
assert(!is_component_build)
source_set("browser") {
visibility = [ "//content/public/app:browser" ]
sources = content_app_sources
configs += content_app_extra_configs
deps = content_app_deps
defines += [ "CHROME_MULTIPLE_DLL_BROWSER" ]
}
source_set("child") {
visibility = [ "//content/public/app:child" ]
sources = content_app_sources
configs += content_app_extra_configs
deps = content_app_deps
defines += [ "CHROME_MULTIPLE_DLL_CHILD" ]
}
}