Chrome Release Bot (LUCI) 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
..
activity 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
android 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
app 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
base 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
bindings 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
browser 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
build 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
cast_core 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
common 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
crash 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
crypto 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
device 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
external_mojo 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
fuchsia 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
gpu 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
graphics 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
media 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
metrics 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
mojo 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
net 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
public 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
renderer 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
resource_sizes 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
service 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
shared 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
system 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
tools 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
tracing 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
ui 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
utility 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
BUILD.gn 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
DEPS 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
DIR_METADATA 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
OWNERS 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
README.md 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
__init__.py 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an
chromecast.gni 4762b62e7d Publish DEPS for 106.0.5249.13 il y a 1 an

README.md

Cast base

cast_features

This file contains tools for checking the feature state of all of the features which affect Cast products. Cast features build upon the Chrome feature system. Some aspects of Cast require the feature system to work differently, however, so some additional logic has been layered on top. Details are available in comments of the header file. The basics are:

  • If you are adding a new feature, add it to cast_features.cc so it lives alongside existing features
  • Add your new feature to the list of kFeatures in cast_features.cc
const base::Feature kMyFeature{"my_feature", base::FEATURE_DISABLED_BY_DEFAULT};


const base::Feature* kFeatures[] = {
  // ..other features
  &kMyFeature
}