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

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
}