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

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

Issue 2453703002: Prepare fullscreen_chromeos.cc to be used for ozone builds. (Closed)
Patch Set: Created 4 years, 1 month 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 "favicon/favicon_service_factory.cc", 374 "favicon/favicon_service_factory.cc",
375 "favicon/favicon_service_factory.h", 375 "favicon/favicon_service_factory.h",
376 "favicon/favicon_utils.cc", 376 "favicon/favicon_utils.cc",
377 "favicon/favicon_utils.h", 377 "favicon/favicon_utils.h",
378 "favicon/large_icon_service_factory.cc", 378 "favicon/large_icon_service_factory.cc",
379 "favicon/large_icon_service_factory.h", 379 "favicon/large_icon_service_factory.h",
380 "file_select_helper.cc", 380 "file_select_helper.cc",
381 "file_select_helper.h", 381 "file_select_helper.h",
382 "file_select_helper_mac.mm", 382 "file_select_helper_mac.mm",
383 "fullscreen.h", 383 "fullscreen.h",
384 "fullscreen_chromeos.cc",
385 "fullscreen_mac.mm", 384 "fullscreen_mac.mm",
386 "fullscreen_win.cc", 385 "fullscreen_win.cc",
387 "geolocation/chrome_access_token_store.cc", 386 "geolocation/chrome_access_token_store.cc",
388 "geolocation/chrome_access_token_store.h", 387 "geolocation/chrome_access_token_store.h",
389 "geolocation/geolocation_permission_context.cc", 388 "geolocation/geolocation_permission_context.cc",
390 "geolocation/geolocation_permission_context.h", 389 "geolocation/geolocation_permission_context.h",
391 "geolocation/geolocation_permission_context_android.cc", 390 "geolocation/geolocation_permission_context_android.cc",
392 "geolocation/geolocation_permission_context_android.h", 391 "geolocation/geolocation_permission_context_android.h",
393 "geolocation/geolocation_permission_context_extensions.cc", 392 "geolocation/geolocation_permission_context_extensions.cc",
394 "geolocation/geolocation_permission_context_extensions.h", 393 "geolocation/geolocation_permission_context_extensions.h",
(...skipping 3104 matching lines...) Expand 10 before | Expand all | Expand 10 after
3499 if (!use_ozone) { 3498 if (!use_ozone) {
3500 sources += [ 3499 sources += [
3501 "password_manager/native_backend_libsecret.cc", 3500 "password_manager/native_backend_libsecret.cc",
3502 "password_manager/native_backend_libsecret.h", 3501 "password_manager/native_backend_libsecret.h",
3503 ] 3502 ]
3504 defines += [ "USE_LIBSECRET" ] 3503 defines += [ "USE_LIBSECRET" ]
3505 deps += [ "//third_party/libsecret" ] 3504 deps += [ "//third_party/libsecret" ]
3506 } 3505 }
3507 } 3506 }
3508 3507
3508 if (is_chromeos || use_ozone) {
3509 sources += [ "fullscreen_chromeos_or_ozone.cc" ]
rjkroege 2016/10/26 18:50:16 this is really weird naming. I'd like there be ano
fwang 2016/10/31 11:38:49 I'd like to understand what we want here. We have
3510 }
3511
3509 if (android_java_ui) { 3512 if (android_java_ui) {
3510 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] 3513 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ]
3511 } 3514 }
3512 3515
3513 if (enable_plugin_installation) { 3516 if (enable_plugin_installation) {
3514 sources += [ 3517 sources += [
3515 "plugins/plugin_installer.cc", 3518 "plugins/plugin_installer.cc",
3516 "plugins/plugin_installer.h", 3519 "plugins/plugin_installer.h",
3517 "plugins/plugin_installer_observer.cc", 3520 "plugins/plugin_installer_observer.cc",
3518 "plugins/plugin_installer_observer.h", 3521 "plugins/plugin_installer_observer.h",
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
4327 # linking all of the test support. 4330 # linking all of the test support.
4328 static_library("pepper_cdm_test_constants") { 4331 static_library("pepper_cdm_test_constants") {
4329 testonly = true 4332 testonly = true
4330 visibility = [ "//chrome/*" ] 4333 visibility = [ "//chrome/*" ]
4331 sources = [ 4334 sources = [
4332 "media/pepper_cdm_test_constants.cc", 4335 "media/pepper_cdm_test_constants.cc",
4333 "media/pepper_cdm_test_constants.h", 4336 "media/pepper_cdm_test_constants.h",
4334 ] 4337 ]
4335 } 4338 }
4336 } 4339 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/fullscreen_chromeos.cc » ('j') | chrome/browser/fullscreen_chromeos_or_ozone.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698