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

Side by Side Diff: chromecast/chromecast.gyp

Issue 1191373010: Chromecast: fix Android lint warnings, which are now build errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
OLDNEW
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 { 5 {
6 'variables': { 6 'variables': {
7 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'cast_build_release': 'internal/build/cast_build_release', 9 'cast_build_release': 'internal/build/cast_build_release',
10 'cast_is_debug_build%': 0, 10 'cast_is_debug_build%': 0,
11 # Refers to enum CastProductType in components/metrics/proto/cast_logs.proto 11 # Refers to enum CastProductType in components/metrics/proto/cast_logs.proto
12 'cast_product_type%': 0, # CAST_PRODUCT_TYPE_UNKNOWN 12 'cast_product_type%': 0, # CAST_PRODUCT_TYPE_UNKNOWN
13 'chromium_code': 1, 13 'chromium_code': 1,
14 'never_lint': 1, 14 #'never_lint': 1,
aurimas (slooooooooow) 2015/06/23 00:42:19 Should we remove this completely?
gunsch 2015/06/23 00:45:43 Done.
15 'chromecast_branding%': 'Chromium', 15 'chromecast_branding%': 'Chromium',
16 'disable_display%': 0, 16 'disable_display%': 0,
17 'enable_default_cast_graphics%': 1, 17 'enable_default_cast_graphics%': 1,
18 'ozone_platform_cast%': 0, 18 'ozone_platform_cast%': 0,
19 'use_chromecast_webui%': 0, 19 'use_chromecast_webui%': 0,
20 }, 20 },
21 'includes': [ 21 'includes': [
22 'chromecast_tests.gypi', 22 'chromecast_tests.gypi',
23 ], 23 ],
24 'target_defaults': { 24 'target_defaults': {
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 }] 483 }]
484 ], 484 ],
485 }, # end of target 'libcast_shell_android' 485 }, # end of target 'libcast_shell_android'
486 { 486 {
487 'target_name': 'cast_base_java', 487 'target_name': 'cast_base_java',
488 'type': 'none', 488 'type': 'none',
489 'dependencies': [ 489 'dependencies': [
490 '../base/base.gyp:base_java', 490 '../base/base.gyp:base_java',
491 ], 491 ],
492 'variables': { 492 'variables': {
493 'android_manifest_path': 'android/AndroidManifest.xml',
493 'java_in_dir': 'base/java', 494 'java_in_dir': 'base/java',
494 }, 495 },
495 'includes': ['../build/java.gypi'], 496 'includes': ['../build/java.gypi'],
496 }, # end of target 'cast_base_java' 497 }, # end of target 'cast_base_java'
497 { 498 {
498 'target_name': 'cast_shell_java', 499 'target_name': 'cast_shell_java',
499 'type': 'none', 500 'type': 'none',
500 'dependencies': [ 501 'dependencies': [
501 '<(android_support_v13_target)', 502 '<(android_support_v13_target)',
502 'cast_base_java', 503 'cast_base_java',
503 '../base/base.gyp:base_java', 504 '../base/base.gyp:base_java',
504 '../components/components.gyp:external_video_surface_java', 505 '../components/components.gyp:external_video_surface_java',
505 '../content/content.gyp:content_java', 506 '../content/content.gyp:content_java',
506 '../media/media.gyp:media_java', 507 '../media/media.gyp:media_java',
507 '../net/net.gyp:net_java', 508 '../net/net.gyp:net_java',
508 '../ui/android/ui_android.gyp:ui_java', 509 '../ui/android/ui_android.gyp:ui_java',
509 ], 510 ],
510 'variables': { 511 'variables': {
512 'android_manifest_path': 'android/AndroidManifest.xml',
511 'has_java_resources': 1, 513 'has_java_resources': 1,
512 'java_in_dir': 'browser/android/apk', 514 'java_in_dir': 'browser/android/apk',
513 'resource_dir': 'browser/android/apk/res', 515 'resource_dir': 'browser/android/apk/res',
514 'R_package': 'org.chromium.chromecast.shell', 516 'R_package': 'org.chromium.chromecast.shell',
515 }, 517 },
516 'includes': ['../build/java.gypi'], 518 'includes': ['../build/java.gypi'],
517 }, # end of target 'cast_shell_java' 519 }, # end of target 'cast_shell_java'
518 { 520 {
519 'target_name': 'cast_shell_manifest', 521 'target_name': 'cast_shell_manifest',
520 'type': 'none', 522 'type': 'none',
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 'sources': [ 667 'sources': [
666 'graphics/cast_egl_platform_default.cc', 668 'graphics/cast_egl_platform_default.cc',
667 'graphics/graphics_properties_default.cc', 669 'graphics/graphics_properties_default.cc',
668 'graphics/osd_plane_default.cc' 670 'graphics/osd_plane_default.cc'
669 ], 671 ],
670 } 672 }
671 ] 673 ]
672 }], 674 }],
673 ], # end of conditions 675 ], # end of conditions
674 } 676 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698