OLD | NEW |
---|---|
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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'chromecast_branding%': 'Chromium', | 8 'chromecast_branding%': 'Chromium', |
9 }, | 9 }, |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
333 ], | 333 ], |
334 }, # end of target 'libcast_shell_android' | 334 }, # end of target 'libcast_shell_android' |
335 { | 335 { |
336 'target_name': 'cast_shell_java', | 336 'target_name': 'cast_shell_java', |
337 'type': 'none', | 337 'type': 'none', |
338 'dependencies': [ | 338 'dependencies': [ |
339 '../base/base.gyp:base_java', | 339 '../base/base.gyp:base_java', |
340 '../content/content.gyp:content_java', | 340 '../content/content.gyp:content_java', |
341 '../media/media.gyp:media_java', | 341 '../media/media.gyp:media_java', |
342 '../net/net.gyp:net_java', | 342 '../net/net.gyp:net_java', |
343 '../third_party/android_tools/android_tools.gyp:android_support_v13_ javalib', | |
344 '../ui/android/ui_android.gyp:ui_java', | 343 '../ui/android/ui_android.gyp:ui_java', |
345 ], | 344 ], |
346 'variables': { | 345 'variables': { |
347 'has_java_resources': 1, | 346 'has_java_resources': 1, |
348 'java_in_dir': 'browser/android/apk', | 347 'java_in_dir': 'browser/android/apk', |
349 'resource_dir': 'browser/android/apk/res', | 348 'resource_dir': 'browser/android/apk/res', |
350 'R_package': 'org.chromium.chromecast.shell', | 349 'R_package': 'org.chromium.chromecast.shell', |
351 }, | 350 }, |
352 'includes': ['../build/java.gypi'], | 351 'includes': ['../build/java.gypi'], |
352 'conditions': [ | |
353 ['chromecast_branding=="Chrome"', { | |
354 'dependencies': [ | |
355 '../third_party/android_tools_internal/android_tools.gyp:android _support_v13_javalib_L', | |
byungchul
2014/10/31 17:36:22
It is not available in ToT. Any other way to repla
gunsch
2014/10/31 18:02:25
Neither are any of the internal GYP references tha
| |
356 ], | |
357 }, { | |
358 'dependencies': [ | |
359 '../third_party/android_tools/android_tools.gyp:android_support_ v13_javalib', | |
360 ], | |
361 }], | |
362 ], | |
353 }, # end of target 'cast_shell_java' | 363 }, # end of target 'cast_shell_java' |
354 { | 364 { |
355 'target_name': 'cast_shell_apk', | 365 'target_name': 'cast_shell_apk', |
356 'type': 'none', | 366 'type': 'none', |
357 'dependencies': [ | 367 'dependencies': [ |
358 'cast_shell_java', | 368 'cast_shell_java', |
359 'libcast_shell_android', | 369 'libcast_shell_android', |
360 ], | 370 ], |
361 'variables': { | 371 'variables': { |
362 'apk_name': 'CastShell', | 372 'apk_name': 'CastShell', |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
460 'sources': [ | 470 'sources': [ |
461 'browser/test/chromecast_browser_test.cc', | 471 'browser/test/chromecast_browser_test.cc', |
462 'browser/test/chromecast_browser_test.h', | 472 'browser/test/chromecast_browser_test.h', |
463 'browser/test/chromecast_browser_test_runner.cc', | 473 'browser/test/chromecast_browser_test_runner.cc', |
464 ], | 474 ], |
465 }, | 475 }, |
466 ], # end of targets | 476 ], # end of targets |
467 }], | 477 }], |
468 ], # end of conditions | 478 ], # end of conditions |
469 } | 479 } |
OLD | NEW |