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

Side by Side Diff: ash/ash.gyp

Issue 10828075: Remove deprecated aura_shell_unittests target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'chromium_code': 1, 7 'chromium_code': 1,
8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
9 }, 9 },
10 10
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 'dependencies': [ 499 'dependencies': [
500 # Mac tests access resources via the 'AuraShell.app' directory. 500 # Mac tests access resources via the 'AuraShell.app' directory.
501 'ash_shell', 501 'ash_shell',
502 ], 502 ],
503 # Special linker instructions that avoids stripping Obj-C classes that 503 # Special linker instructions that avoids stripping Obj-C classes that
504 # are not referenced in code, but are referenced in nibs. 504 # are not referenced in code, but are referenced in nibs.
505 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 505 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
506 }], 506 }],
507 ], 507 ],
508 }, 508 },
509 # ash_unittests was formerly named aura_shell_unittests. While the build
510 # bots are being switched to use the new name we need to support both
511 # executables.
512 # TODO(jamescook): Remove this section when build bots are building and
513 # running ash_unittests.
514 {
515 'target_name': 'aura_shell_unittests',
516 'type': 'none',
517 'dependencies': [
518 'ash_unittests',
519 ],
520 'actions': [
521 {
522 'message': 'TEMPORARY: Copy ash_unittests to aura_shell_unittests',
523 'action_name': 'copy_ash_unittests',
524 'variables': {
525 'source_file': '<(PRODUCT_DIR)/ash_unittests<(EXECUTABLE_SUFFIX)',
526 'dest_file': '<(PRODUCT_DIR)/aura_shell_unittests<(EXECUTABLE_SUFFIX )',
527 },
528 'inputs': [
529 '<(DEPTH)/build/cp.py',
530 '<(source_file)',
531 ],
532 'outputs': [
533 '<(dest_file)',
534 ],
535 'action': [
536 'python', '<(DEPTH)/build/cp.py', '<(source_file)', '<(dest_file)',
537 ],
538 },
539 ],
540 },
541 { 509 {
542 'target_name': 'ash_shell', 510 'target_name': 'ash_shell',
543 'type': 'executable', 511 'type': 'executable',
544 'dependencies': [ 512 'dependencies': [
545 '../base/base.gyp:base', 513 '../base/base.gyp:base',
546 '../base/base.gyp:base_i18n', 514 '../base/base.gyp:base_i18n',
547 '../chrome/chrome_resources.gyp:packed_resources', 515 '../chrome/chrome_resources.gyp:packed_resources',
548 '../content/content.gyp:content_shell_lib', 516 '../content/content.gyp:content_shell_lib',
549 '../content/content.gyp:content', 517 '../content/content.gyp:content',
550 '../skia/skia.gyp:skia', 518 '../skia/skia.gyp:skia',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 'shell/cocoa/app-Info.plist', 589 'shell/cocoa/app-Info.plist',
622 ], 590 ],
623 'xcode_settings': { 591 'xcode_settings': {
624 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', 592 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist',
625 }, 593 },
626 }], 594 }],
627 ], 595 ],
628 }, 596 },
629 ], 597 ],
630 } 598 }
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698