Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: content/app/BUILD.gn

Issue 1922613003: Add blimp to root GN check_targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Flipped the order of the conditional in //content/app/BUILD.gn Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « blimp/net/BUILD.gn ('k') | content/ppapi_plugin/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni")
6 7
7 content_app_sources = [ 8 content_app_sources = [
8 "android/app_jni_registrar.cc", 9 "android/app_jni_registrar.cc",
9 "android/app_jni_registrar.h", 10 "android/app_jni_registrar.h",
10 "android/child_process_service.cc", 11 "android/child_process_service.cc",
11 "android/child_process_service.h", 12 "android/child_process_service.h",
12 "android/content_jni_onload.cc", 13 "android/content_jni_onload.cc",
13 "android/content_main.cc", 14 "android/content_main.cc",
14 "android/content_main.h", 15 "android/content_main.h",
15 "android/download_main.cc", 16 "android/download_main.cc",
(...skipping 29 matching lines...) Expand all
45 content_app_deps += [ 46 content_app_deps += [
46 "//content/public/android:jni", 47 "//content/public/android:jni",
47 "//device/usb", 48 "//device/usb",
48 "//device/vibration", 49 "//device/vibration",
49 "//skia", 50 "//skia",
50 "//third_party/android_tools:cpu_features", 51 "//third_party/android_tools:cpu_features",
51 "//ui/android", 52 "//ui/android",
52 ] 53 ]
53 } 54 }
54 55
56 if (is_linux && enable_plugins) {
57 content_app_deps += [ "//content/ppapi_plugin:ppapi_plugin_sources" ]
58 }
59
55 content_app_extra_configs = [ 60 content_app_extra_configs = [
56 "//build/config/compiler:wexit_time_destructors", 61 "//build/config/compiler:wexit_time_destructors",
57 "//content:content_implementation", 62 "//content:content_implementation",
58 "//content/public/common:mojo_shell_client", 63 "//content/public/common:mojo_shell_client",
59 "//v8:external_startup_data", 64 "//v8:external_startup_data",
60 ] 65 ]
61 66
62 if (!is_multi_dll_chrome) { 67 if (!is_multi_dll_chrome) {
63 content_app_deps += [ "//content/gpu:gpu_sources" ] 68 content_app_deps += [ "//content/gpu:gpu_sources" ]
64 } 69 }
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 source_set("child") { 109 source_set("child") {
105 visibility = [ "//content/public/app:child" ] 110 visibility = [ "//content/public/app:child" ]
106 111
107 sources = content_app_sources 112 sources = content_app_sources
108 configs += content_app_extra_configs 113 configs += content_app_extra_configs
109 deps = content_app_deps 114 deps = content_app_deps
110 115
111 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] 116 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ]
112 } 117 }
113 } 118 }
OLDNEW
« no previous file with comments | « blimp/net/BUILD.gn ('k') | content/ppapi_plugin/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698