| OLD | NEW |
| 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 3697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3708 "supervised_user/legacy/supervised_user_sync_service_factory.h", | 3708 "supervised_user/legacy/supervised_user_sync_service_factory.h", |
| 3709 "supervised_user/legacy/supervised_user_sync_service_observer.h", | 3709 "supervised_user/legacy/supervised_user_sync_service_observer.h", |
| 3710 ] | 3710 ] |
| 3711 } | 3711 } |
| 3712 if (enable_supervised_users && enable_themes) { | 3712 if (enable_supervised_users && enable_themes) { |
| 3713 sources += [ | 3713 sources += [ |
| 3714 "supervised_user/supervised_user_theme.cc", | 3714 "supervised_user/supervised_user_theme.cc", |
| 3715 "supervised_user/supervised_user_theme.h", | 3715 "supervised_user/supervised_user_theme.h", |
| 3716 ] | 3716 ] |
| 3717 } | 3717 } |
| 3718 if (enable_supervised_users && !is_android && !is_chromeos) { |
| 3719 sources += [ |
| 3720 "supervised_user/supervised_user_creation_policy_handler.cc", |
| 3721 "supervised_user/supervised_user_creation_policy_handler.h", |
| 3722 ] |
| 3723 } |
| 3718 if (enable_webrtc) { | 3724 if (enable_webrtc) { |
| 3719 sources += [ | 3725 sources += [ |
| 3720 "media/audio_debug_recordings_handler.h", | 3726 "media/audio_debug_recordings_handler.h", |
| 3721 | 3727 |
| 3722 # TODO(brettw) should webrtc_log_list.cc go here? | 3728 # TODO(brettw) should webrtc_log_list.cc go here? |
| 3723 "media/webrtc/audio_debug_recordings_handler.cc", | 3729 "media/webrtc/audio_debug_recordings_handler.cc", |
| 3724 "media/webrtc/webrtc_event_log_handler.cc", | 3730 "media/webrtc/webrtc_event_log_handler.cc", |
| 3725 "media/webrtc/webrtc_event_log_handler.h", | 3731 "media/webrtc/webrtc_event_log_handler.h", |
| 3726 "media/webrtc/webrtc_log_uploader.cc", | 3732 "media/webrtc/webrtc_log_uploader.cc", |
| 3727 "media/webrtc/webrtc_log_uploader.h", | 3733 "media/webrtc/webrtc_log_uploader.h", |
| (...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4448 # linking all of the test support. | 4454 # linking all of the test support. |
| 4449 static_library("pepper_cdm_test_constants") { | 4455 static_library("pepper_cdm_test_constants") { |
| 4450 testonly = true | 4456 testonly = true |
| 4451 visibility = [ "//chrome/*" ] | 4457 visibility = [ "//chrome/*" ] |
| 4452 sources = [ | 4458 sources = [ |
| 4453 "media/pepper_cdm_test_constants.cc", | 4459 "media/pepper_cdm_test_constants.cc", |
| 4454 "media/pepper_cdm_test_constants.h", | 4460 "media/pepper_cdm_test_constants.h", |
| 4455 ] | 4461 ] |
| 4456 } | 4462 } |
| 4457 } | 4463 } |
| OLD | NEW |