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

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

Issue 2594203004: Unifying ChildProcessLauncher across platforms. (Closed)
Patch Set: Fixed Mac tests. Created 3 years, 11 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/WebKit/public/public_features.gni") 10 import("//third_party/WebKit/public/public_features.gni")
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 "android/app_web_message_port_message_filter.cc", 239 "android/app_web_message_port_message_filter.cc",
240 "android/app_web_message_port_message_filter.h", 240 "android/app_web_message_port_message_filter.h",
241 "android/app_web_message_port_service_impl.cc", 241 "android/app_web_message_port_service_impl.cc",
242 "android/app_web_message_port_service_impl.h", 242 "android/app_web_message_port_service_impl.h",
243 "android/background_sync_network_observer_android.cc", 243 "android/background_sync_network_observer_android.cc",
244 "android/background_sync_network_observer_android.h", 244 "android/background_sync_network_observer_android.h",
245 "android/browser_jni_registrar.cc", 245 "android/browser_jni_registrar.cc",
246 "android/browser_jni_registrar.h", 246 "android/browser_jni_registrar.h",
247 "android/browser_startup_controller.cc", 247 "android/browser_startup_controller.cc",
248 "android/browser_startup_controller.h", 248 "android/browser_startup_controller.h",
249 "android/child_process_launcher_android.cc", 249 "android/child_process_launcher_android_jni.cc",
250 "android/child_process_launcher_android.h", 250 "android/child_process_launcher_android_jni.h",
251 "android/content_protocol_handler_impl.cc", 251 "android/content_protocol_handler_impl.cc",
252 "android/content_protocol_handler_impl.h", 252 "android/content_protocol_handler_impl.h",
253 "android/content_startup_flags.cc", 253 "android/content_startup_flags.cc",
254 "android/content_startup_flags.h", 254 "android/content_startup_flags.h",
255 "android/content_video_view.cc", 255 "android/content_video_view.cc",
256 "android/content_video_view.h", 256 "android/content_video_view.h",
257 "android/devtools_auth.cc", 257 "android/devtools_auth.cc",
258 "android/java_interfaces_impl.cc", 258 "android/java_interfaces_impl.cc",
259 "android/java_interfaces_impl.h", 259 "android/java_interfaces_impl.h",
260 "android/scoped_surface_request_manager.cc", 260 "android/scoped_surface_request_manager.cc",
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 "cache_storage/cache_storage_manager.h", 402 "cache_storage/cache_storage_manager.h",
403 "cache_storage/cache_storage_operation.cc", 403 "cache_storage/cache_storage_operation.cc",
404 "cache_storage/cache_storage_operation.h", 404 "cache_storage/cache_storage_operation.h",
405 "cache_storage/cache_storage_quota_client.cc", 405 "cache_storage/cache_storage_quota_client.cc",
406 "cache_storage/cache_storage_quota_client.h", 406 "cache_storage/cache_storage_quota_client.h",
407 "cache_storage/cache_storage_scheduler.cc", 407 "cache_storage/cache_storage_scheduler.cc",
408 "cache_storage/cache_storage_scheduler.h", 408 "cache_storage/cache_storage_scheduler.h",
409 "cache_storage/cache_storage_scheduler_client.h", 409 "cache_storage/cache_storage_scheduler_client.h",
410 "child_process_launcher.cc", 410 "child_process_launcher.cc",
411 "child_process_launcher.h", 411 "child_process_launcher.h",
412 "child_process_launcher_android.cc",
413 "child_process_launcher_linux.cc",
414 "child_process_launcher_mac.cc",
415 "child_process_launcher_posix.cc",
416 "child_process_launcher_posix.h",
417 "child_process_launcher_win.cc",
412 "child_process_security_policy_impl.cc", 418 "child_process_security_policy_impl.cc",
413 "child_process_security_policy_impl.h", 419 "child_process_security_policy_impl.h",
414 "cocoa/system_hotkey_helper_mac.h", 420 "cocoa/system_hotkey_helper_mac.h",
415 "cocoa/system_hotkey_helper_mac.mm", 421 "cocoa/system_hotkey_helper_mac.mm",
416 "cocoa/system_hotkey_map.h", 422 "cocoa/system_hotkey_map.h",
417 "cocoa/system_hotkey_map.mm", 423 "cocoa/system_hotkey_map.mm",
418 424
419 # NOTE: These files are here instead of in compositor_browser_sources 425 # NOTE: These files are here instead of in compositor_browser_sources
420 # because the latter is not built on Android, whereas these files are 426 # because the latter is not built on Android, whereas these files are
421 # needed on all platforms. 427 # needed on all platforms.
(...skipping 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after
2005 if (!is_component_build) { 2011 if (!is_component_build) {
2006 public_deps = [ 2012 public_deps = [
2007 ":browser", 2013 ":browser",
2008 ] 2014 ]
2009 } else { 2015 } else {
2010 public_deps = [ 2016 public_deps = [
2011 "//third_party/leveldatabase", 2017 "//third_party/leveldatabase",
2012 ] 2018 ]
2013 } 2019 }
2014 } 2020 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698