OLD | NEW |
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 'includes': [ |
| 7 '../media/cdm_paths.gypi', |
| 8 ], |
6 'variables': { | 9 'variables': { |
7 'lastchange_path': '../build/util/LASTCHANGE', | 10 'lastchange_path': '../build/util/LASTCHANGE', |
8 'branding_dir': 'app/theme/<(branding_path_component)', | 11 'branding_dir': 'app/theme/<(branding_path_component)', |
9 'branding_dir_100': 'app/theme/default_100_percent/<(branding_path_component
)', | 12 'branding_dir_100': 'app/theme/default_100_percent/<(branding_path_component
)', |
10 }, | 13 }, |
11 'conditions': [ | 14 'conditions': [ |
12 ['OS=="win"', { | 15 ['OS=="win"', { |
13 'targets': [ | 16 'targets': [ |
14 { | 17 { |
15 # GN version: //chrome/installer/gcapi | 18 # GN version: //chrome/installer/gcapi |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
518 '-d', '<(branding_path_component)'], | 521 '-d', '<(branding_path_component)'], |
519 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', | 522 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', |
520 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)', | 523 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)', |
521 '-d', '<(branding_path_component)'], | 524 '-d', '<(branding_path_component)'], |
522 'conditions': [ | 525 'conditions': [ |
523 ['target_arch=="ia32"', { | 526 ['target_arch=="ia32"', { |
524 'deb_arch': 'i386', | 527 'deb_arch': 'i386', |
525 'rpm_arch': 'i386', | 528 'rpm_arch': 'i386', |
526 'packaging_files_binaries': [ | 529 'packaging_files_binaries': [ |
527 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', | 530 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', |
528 '<(PRODUCT_DIR)/libwidevinecdmadapter.so', | 531 '<(PRODUCT_DIR)/<(widevine_cdm_path)/libwidevinecdmadapter.so', |
529 '<(PRODUCT_DIR)/libwidevinecdm.so', | 532 '<(PRODUCT_DIR)/<(widevine_cdm_path)/libwidevinecdm.so', |
530 ], | 533 ], |
531 'packaging_files_common': [ | 534 'packaging_files_common': [ |
532 '<(DEPTH)/build/linux/bin/eu-strip', | 535 '<(DEPTH)/build/linux/bin/eu-strip', |
533 ], | 536 ], |
534 }], | 537 }], |
535 ['target_arch=="x64"', { | 538 ['target_arch=="x64"', { |
536 'deb_arch': 'amd64', | 539 'deb_arch': 'amd64', |
537 'rpm_arch': 'x86_64', | 540 'rpm_arch': 'x86_64', |
538 'packaging_files_binaries': [ | 541 'packaging_files_binaries': [ |
539 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', | 542 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', |
540 '<(PRODUCT_DIR)/libwidevinecdmadapter.so', | 543 '<(PRODUCT_DIR)/<(widevine_cdm_path)/libwidevinecdmadapter.so', |
541 '<(PRODUCT_DIR)/libwidevinecdm.so', | 544 '<(PRODUCT_DIR)/<(widevine_cdm_path)/libwidevinecdm.so', |
542 ], | 545 ], |
543 'packaging_files_common': [ | 546 'packaging_files_common': [ |
544 '<!(which eu-strip)', | 547 '<!(which eu-strip)', |
545 ], | 548 ], |
546 }], | 549 }], |
547 ['target_arch=="arm"', { | 550 ['target_arch=="arm"', { |
548 'deb_arch': 'arm', | 551 'deb_arch': 'arm', |
549 'rpm_arch': 'arm', | 552 'rpm_arch': 'arm', |
550 }], | 553 }], |
551 ['asan==1', { | 554 ['asan==1', { |
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1173 '../build/isolate.gypi', | 1176 '../build/isolate.gypi', |
1174 ], | 1177 ], |
1175 'sources': [ | 1178 'sources': [ |
1176 'setup_unittests.isolate', | 1179 'setup_unittests.isolate', |
1177 ], | 1180 ], |
1178 }, | 1181 }, |
1179 ], | 1182 ], |
1180 }], | 1183 }], |
1181 ], | 1184 ], |
1182 } | 1185 } |
OLD | NEW |