-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmultimedia_camera_framework.gni
More file actions
78 lines (72 loc) · 2.83 KB
/
multimedia_camera_framework.gni
File metadata and controls
78 lines (72 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Copyright (c) 2023 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
graphic_surface_path = "//foundation/graphic/graphic_surface"
graphic_2d_path = "//foundation/graphic/graphic_2d"
multimedia_camera_framework_path = "//foundation/multimedia/camera_framework"
multimedia_image_framework_path = "//foundation/multimedia/image_framework"
driver_camera_path = "//drivers/interface/camera"
third_party_path = "//third_party/googletest"
driver_peripheral_path = "//drivers/peripheral/camera"
base_security_path = "//base/security/access_token"
driver_disply_path = "//drivers/peripheral/display"
window_manager_path = "//foundation/window/window_manager"
system_safwk_path = "//utils/system/safwk"
multimedia_media_library_path = "//foundation/multimedia/media_library"
declare_args() {
camera_framework_feature_camera_rotate_plugin = false
camera_framework_feature_camera_live_scene_recognition = false
camera_framework_feature_moving_photo = true
camera_framework_feature_beauty_notification = true
camera_framework_feature_movie_file = true
camera_framework_feature_media_stream = true
camera_framework_feature_deferred = true
camera_framework_feature_xcomponent_toast = true
camera_framework_feature_rotate_param_update = true
camera_framework_feature_capture_yuv = true
camera_framework_feature_camera_service_priority = false
camera_framework_feature_picker_pre_require_mem = false
}
use_sensor = false
if (defined(global_parts_info) && defined(global_parts_info.sensors_sensor)) {
use_sensor = true
}
use_thermal_manager = false
if (defined(global_parts_info) &&
defined(global_parts_info.powermgr_thermal_manager)) {
use_thermal_manager = true
}
use_battery_manager = false
if (defined(global_parts_info) &&
defined(global_parts_info.powermgr_battery_manager)) {
use_battery_manager = true
}
use_power_manager = false
if (defined(global_parts_info) &&
defined(global_parts_info.powermgr_power_manager)) {
use_power_manager = true
}
use_image_effect = false
if (defined(global_parts_info) &&
defined(global_parts_info.multimedia_image_effect)) {
use_image_effect = true
}
use_memmgr_override = false
if (defined(global_parts_info) &&
defined(global_parts_info.resourceschedule_memmgr_override)) {
use_memmgr_override = true
}
gen_camera_picker = true
hicollie_enable = true
declare_args() {
fwk_no_hidden = false
}