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

Side by Side Diff: chrome/chrome_installer.gypi

Issue 1957643002: media: Move widevine CDM targets to WidevineCdm folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Also update stub cdm. Created 4 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'lastchange_path': '../build/util/LASTCHANGE', 7 'lastchange_path': '../build/util/LASTCHANGE',
8 'branding_dir': 'app/theme/<(branding_path_component)', 8 'branding_dir': 'app/theme/<(branding_path_component)',
9 'branding_dir_100': 'app/theme/default_100_percent/<(branding_path_component )', 9 'branding_dir_100': 'app/theme/default_100_percent/<(branding_path_component )',
10 }, 10 },
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 '-d', '<(branding_path_component)'], 475 '-d', '<(branding_path_component)'],
476 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', 476 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)',
477 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)', 477 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)',
478 '-d', '<(branding_path_component)'], 478 '-d', '<(branding_path_component)'],
479 'conditions': [ 479 'conditions': [
480 ['target_arch=="ia32"', { 480 ['target_arch=="ia32"', {
481 'deb_arch': 'i386', 481 'deb_arch': 'i386',
482 'rpm_arch': 'i386', 482 'rpm_arch': 'i386',
483 'packaging_files_binaries': [ 483 'packaging_files_binaries': [
484 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', 484 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe',
485 '<(PRODUCT_DIR)/libwidevinecdmadapter.so', 485 '<(PRODUCT_DIR)/WidevineCdm/libwidevinecdmadapter.so',
486 '<(PRODUCT_DIR)/libwidevinecdm.so', 486 '<(PRODUCT_DIR)/WidevineCdm/libwidevinecdm.so',
487 ], 487 ],
488 'packaging_files_common': [ 488 'packaging_files_common': [
489 '<(DEPTH)/build/linux/bin/eu-strip', 489 '<(DEPTH)/build/linux/bin/eu-strip',
490 ], 490 ],
491 }], 491 }],
492 ['target_arch=="x64"', { 492 ['target_arch=="x64"', {
493 'deb_arch': 'amd64', 493 'deb_arch': 'amd64',
494 'rpm_arch': 'x86_64', 494 'rpm_arch': 'x86_64',
495 'packaging_files_binaries': [ 495 'packaging_files_binaries': [
496 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', 496 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
497 '<(PRODUCT_DIR)/libwidevinecdmadapter.so', 497 '<(PRODUCT_DIR)/WidevineCdm/libwidevinecdmadapter.so',
498 '<(PRODUCT_DIR)/libwidevinecdm.so', 498 '<(PRODUCT_DIR)/WidevineCdm/libwidevinecdm.so',
499 ], 499 ],
500 'packaging_files_common': [ 500 'packaging_files_common': [
501 '<!(which eu-strip)', 501 '<!(which eu-strip)',
502 ], 502 ],
503 }], 503 }],
504 ['target_arch=="arm"', { 504 ['target_arch=="arm"', {
505 'deb_arch': 'arm', 505 'deb_arch': 'arm',
506 'rpm_arch': 'arm', 506 'rpm_arch': 'arm',
507 }], 507 }],
508 ['asan==1', { 508 ['asan==1', {
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 '../build/isolate.gypi', 1130 '../build/isolate.gypi',
1131 ], 1131 ],
1132 'sources': [ 1132 'sources': [
1133 'setup_unittests.isolate', 1133 'setup_unittests.isolate',
1134 ], 1134 ],
1135 }, 1135 },
1136 ], 1136 ],
1137 }], 1137 }],
1138 ], 1138 ],
1139 } 1139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698