| 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 3683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3694 "supervised_user/legacy/supervised_user_sync_service_factory.h", | 3694 "supervised_user/legacy/supervised_user_sync_service_factory.h", |
| 3695 "supervised_user/legacy/supervised_user_sync_service_observer.h", | 3695 "supervised_user/legacy/supervised_user_sync_service_observer.h", |
| 3696 ] | 3696 ] |
| 3697 } | 3697 } |
| 3698 if (enable_supervised_users && enable_themes) { | 3698 if (enable_supervised_users && enable_themes) { |
| 3699 sources += [ | 3699 sources += [ |
| 3700 "supervised_user/supervised_user_theme.cc", | 3700 "supervised_user/supervised_user_theme.cc", |
| 3701 "supervised_user/supervised_user_theme.h", | 3701 "supervised_user/supervised_user_theme.h", |
| 3702 ] | 3702 ] |
| 3703 } | 3703 } |
| 3704 if (enable_supervised_users && !is_android && !is_chromeos) { |
| 3705 sources += [ |
| 3706 "supervised_user/supervised_user_creation_policy_handler.cc", |
| 3707 "supervised_user/supervised_user_creation_policy_handler.h", |
| 3708 ] |
| 3709 } |
| 3704 if (enable_webrtc) { | 3710 if (enable_webrtc) { |
| 3705 sources += [ | 3711 sources += [ |
| 3706 "media/audio_debug_recordings_handler.h", | 3712 "media/audio_debug_recordings_handler.h", |
| 3707 | 3713 |
| 3708 # TODO(brettw) should webrtc_log_list.cc go here? | 3714 # TODO(brettw) should webrtc_log_list.cc go here? |
| 3709 "media/webrtc/audio_debug_recordings_handler.cc", | 3715 "media/webrtc/audio_debug_recordings_handler.cc", |
| 3710 "media/webrtc/webrtc_event_log_handler.cc", | 3716 "media/webrtc/webrtc_event_log_handler.cc", |
| 3711 "media/webrtc/webrtc_event_log_handler.h", | 3717 "media/webrtc/webrtc_event_log_handler.h", |
| 3712 "media/webrtc/webrtc_log_uploader.cc", | 3718 "media/webrtc/webrtc_log_uploader.cc", |
| 3713 "media/webrtc/webrtc_log_uploader.h", | 3719 "media/webrtc/webrtc_log_uploader.h", |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4430 # linking all of the test support. | 4436 # linking all of the test support. |
| 4431 static_library("pepper_cdm_test_constants") { | 4437 static_library("pepper_cdm_test_constants") { |
| 4432 testonly = true | 4438 testonly = true |
| 4433 visibility = [ "//chrome/*" ] | 4439 visibility = [ "//chrome/*" ] |
| 4434 sources = [ | 4440 sources = [ |
| 4435 "media/pepper_cdm_test_constants.cc", | 4441 "media/pepper_cdm_test_constants.cc", |
| 4436 "media/pepper_cdm_test_constants.h", | 4442 "media/pepper_cdm_test_constants.h", |
| 4437 ] | 4443 ] |
| 4438 } | 4444 } |
| 4439 } | 4445 } |
| OLD | NEW |