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

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: @loader_path/. 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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 '-d', '<(branding_path_component)'], 517 '-d', '<(branding_path_component)'],
518 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', 518 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)',
519 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)', 519 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)',
520 '-d', '<(branding_path_component)'], 520 '-d', '<(branding_path_component)'],
521 'conditions': [ 521 'conditions': [
522 ['target_arch=="ia32"', { 522 ['target_arch=="ia32"', {
523 'deb_arch': 'i386', 523 'deb_arch': 'i386',
524 'rpm_arch': 'i386', 524 'rpm_arch': 'i386',
525 'packaging_files_binaries': [ 525 'packaging_files_binaries': [
526 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', 526 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe',
527 '<(PRODUCT_DIR)/libwidevinecdmadapter.so', 527 '<(PRODUCT_DIR)/WidevineCdm/libwidevinecdmadapter.so',
528 '<(PRODUCT_DIR)/libwidevinecdm.so', 528 '<(PRODUCT_DIR)/WidevineCdm/libwidevinecdm.so',
529 ], 529 ],
530 'packaging_files_common': [ 530 'packaging_files_common': [
531 '<(DEPTH)/build/linux/bin/eu-strip', 531 '<(DEPTH)/build/linux/bin/eu-strip',
532 ], 532 ],
533 }], 533 }],
534 ['target_arch=="x64"', { 534 ['target_arch=="x64"', {
535 'deb_arch': 'amd64', 535 'deb_arch': 'amd64',
536 'rpm_arch': 'x86_64', 536 'rpm_arch': 'x86_64',
537 'packaging_files_binaries': [ 537 'packaging_files_binaries': [
538 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', 538 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
539 '<(PRODUCT_DIR)/libwidevinecdmadapter.so', 539 '<(PRODUCT_DIR)/WidevineCdm/libwidevinecdmadapter.so',
540 '<(PRODUCT_DIR)/libwidevinecdm.so', 540 '<(PRODUCT_DIR)/WidevineCdm/libwidevinecdm.so',
541 ], 541 ],
542 'packaging_files_common': [ 542 'packaging_files_common': [
543 '<!(which eu-strip)', 543 '<!(which eu-strip)',
544 ], 544 ],
545 }], 545 }],
546 ['target_arch=="arm"', { 546 ['target_arch=="arm"', {
547 'deb_arch': 'arm', 547 'deb_arch': 'arm',
548 'rpm_arch': 'arm', 548 'rpm_arch': 'arm',
549 }], 549 }],
550 ['asan==1', { 550 ['asan==1', {
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
1172 '../build/isolate.gypi', 1172 '../build/isolate.gypi',
1173 ], 1173 ],
1174 'sources': [ 1174 'sources': [
1175 'setup_unittests.isolate', 1175 'setup_unittests.isolate',
1176 ], 1176 ],
1177 }, 1177 },
1178 ], 1178 ],
1179 }], 1179 }],
1180 ], 1180 ],
1181 } 1181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698