Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: chromecast/base/BUILD.gn

Issue 2786723002: [Chromecast] Add Cast Assistant product type. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | components/metrics/proto/cast_logs.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/base/BUILD.gn
diff --git a/chromecast/base/BUILD.gn b/chromecast/base/BUILD.gn
index 0b48874590791a42765a09bdb2efc4286b737d31..fbd00bf1cfeb088f6d0ff1f122e192713d2f14c9 100644
--- a/chromecast/base/BUILD.gn
+++ b/chromecast/base/BUILD.gn
@@ -12,7 +12,7 @@ if (is_android) {
declare_args() {
# Denotes the type of Cast product. This is #defined as CAST_PRODUCT_TYPE in
- # version.h. This is an integer in the range [0-4].
+ # version.h. This is an integer in the range [0-5].
if (is_android) {
cast_product_type = 4
} else {
@@ -23,7 +23,7 @@ declare_args() {
if (is_android) {
assert(cast_product_type == 4)
} else {
- assert(cast_product_type >= 0 && cast_product_type <= 3)
+ assert(cast_product_type >= 0 && cast_product_type <= 5)
slan 2017/03/29 19:29:17 nit: This should technically be: assert((type >=
}
source_set("base") {
« no previous file with comments | « no previous file | components/metrics/proto/cast_logs.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698