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

Side by Side Diff: trunk/src/ash/ash.gyp

Issue 18547009: Revert 209420 "Factor out content shell and tests into a standal..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 5 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 | « trunk/src/android_webview/android_webview_tests.gypi ('k') | trunk/src/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 'includes': [ 10 'includes': [
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 ], 619 ],
620 }, 620 },
621 { 621 {
622 'target_name': 'ash_unittests', 622 'target_name': 'ash_unittests',
623 'type': 'executable', 623 'type': 'executable',
624 'dependencies': [ 624 'dependencies': [
625 '../base/base.gyp:base', 625 '../base/base.gyp:base',
626 '../base/base.gyp:test_support_base', 626 '../base/base.gyp:test_support_base',
627 '../chrome/chrome_resources.gyp:packed_resources', 627 '../chrome/chrome_resources.gyp:packed_resources',
628 '../content/content.gyp:content_browser', 628 '../content/content.gyp:content_browser',
629 '../content/content_shell_and_tests.gyp:test_support_content', 629 '../content/content.gyp:test_support_content',
630 '../skia/skia.gyp:skia', 630 '../skia/skia.gyp:skia',
631 '../testing/gtest.gyp:gtest', 631 '../testing/gtest.gyp:gtest',
632 '../third_party/icu/icu.gyp:icui18n', 632 '../third_party/icu/icu.gyp:icui18n',
633 '../third_party/icu/icu.gyp:icuuc', 633 '../third_party/icu/icu.gyp:icuuc',
634 '../ui/app_list/app_list.gyp:app_list', 634 '../ui/app_list/app_list.gyp:app_list',
635 '../ui/aura/aura.gyp:aura', 635 '../ui/aura/aura.gyp:aura',
636 '../ui/aura/aura.gyp:aura_test_support', 636 '../ui/aura/aura.gyp:aura_test_support',
637 '../ui/compositor/compositor.gyp:compositor', 637 '../ui/compositor/compositor.gyp:compositor',
638 '../ui/keyboard/keyboard.gyp:keyboard', 638 '../ui/keyboard/keyboard.gyp:keyboard',
639 '../ui/message_center/message_center.gyp:message_center', 639 '../ui/message_center/message_center.gyp:message_center',
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 ], 801 ],
802 }, 802 },
803 { 803 {
804 'target_name': 'ash_shell', 804 'target_name': 'ash_shell',
805 'type': 'executable', 805 'type': 'executable',
806 'dependencies': [ 806 'dependencies': [
807 'ash_strings.gyp:ash_strings', 807 'ash_strings.gyp:ash_strings',
808 '../base/base.gyp:base', 808 '../base/base.gyp:base',
809 '../base/base.gyp:base_i18n', 809 '../base/base.gyp:base_i18n',
810 '../chrome/chrome_resources.gyp:packed_resources', 810 '../chrome/chrome_resources.gyp:packed_resources',
811 '../content/content.gyp:content_shell_lib',
811 '../content/content.gyp:content', 812 '../content/content.gyp:content',
812 '../content/content_shell_and_tests.gyp:content_shell_lib',
813 '../skia/skia.gyp:skia', 813 '../skia/skia.gyp:skia',
814 '../third_party/icu/icu.gyp:icui18n', 814 '../third_party/icu/icu.gyp:icui18n',
815 '../third_party/icu/icu.gyp:icuuc', 815 '../third_party/icu/icu.gyp:icuuc',
816 '../ui/app_list/app_list.gyp:app_list', 816 '../ui/app_list/app_list.gyp:app_list',
817 '../ui/aura/aura.gyp:aura', 817 '../ui/aura/aura.gyp:aura',
818 '../ui/compositor/compositor.gyp:compositor', 818 '../ui/compositor/compositor.gyp:compositor',
819 '../ui/keyboard/keyboard.gyp:keyboard', 819 '../ui/keyboard/keyboard.gyp:keyboard',
820 '../ui/message_center/message_center.gyp:message_center', 820 '../ui/message_center/message_center.gyp:message_center',
821 '../ui/ui.gyp:ui', 821 '../ui/ui.gyp:ui',
822 '../ui/ui.gyp:ui_resources', 822 '../ui/ui.gyp:ui_resources',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 'shell/cocoa/app-Info.plist', 892 'shell/cocoa/app-Info.plist',
893 ], 893 ],
894 'xcode_settings': { 894 'xcode_settings': {
895 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', 895 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist',
896 }, 896 },
897 }], 897 }],
898 ], 898 ],
899 }, 899 },
900 ], 900 ],
901 } 901 }
OLDNEW
« no previous file with comments | « trunk/src/android_webview/android_webview_tests.gypi ('k') | trunk/src/build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698