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

Side by Side Diff: ui/views/views.gyp

Issue 14089011: Roll the DEPS for google-url. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort chrome_tests.gypi Created 7 years, 8 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 | « ui/views/controls/webview/webview.gyp ('k') | url/url.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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'target_defaults': { 8 'target_defaults': {
9 'conditions': [ 9 'conditions': [
10 ['use_aura==1', { 10 ['use_aura==1', {
11 'sources/': [ ['exclude', '_win\\.(h|cc)$'] ], 11 'sources/': [ ['exclude', '_win\\.(h|cc)$'] ],
12 'dependencies': [ '../aura/aura.gyp:aura', ], 12 'dependencies': [ '../aura/aura.gyp:aura', ],
13 }], 13 }],
14 ['OS!="linux" or chromeos==1', { 14 ['OS!="linux" or chromeos==1', {
15 'sources/': [ ['exclude', '_linux\\.(h|cc)$'] ], 15 'sources/': [ ['exclude', '_linux\\.(h|cc)$'] ],
16 }], 16 }],
17 ], 17 ],
18 }, 18 },
19 'targets': [ 19 'targets': [
20 { 20 {
21 'target_name': 'views', 21 'target_name': 'views',
22 'type': '<(component)', 22 'type': '<(component)',
23 'dependencies': [ 23 'dependencies': [
24 '../../base/base.gyp:base', 24 '../../base/base.gyp:base',
25 '../../base/base.gyp:base_i18n', 25 '../../base/base.gyp:base_i18n',
26 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 26 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
27 '../../build/temp_gyp/googleurl.gyp:googleurl',
28 '../../skia/skia.gyp:skia', 27 '../../skia/skia.gyp:skia',
29 '../../third_party/icu/icu.gyp:icui18n', 28 '../../third_party/icu/icu.gyp:icui18n',
30 '../../third_party/icu/icu.gyp:icuuc', 29 '../../third_party/icu/icu.gyp:icuuc',
30 '../../url/url.gyp:url',
31 '../base/strings/ui_strings.gyp:ui_strings', 31 '../base/strings/ui_strings.gyp:ui_strings',
32 '../compositor/compositor.gyp:compositor', 32 '../compositor/compositor.gyp:compositor',
33 '../native_theme/native_theme.gyp:native_theme', 33 '../native_theme/native_theme.gyp:native_theme',
34 '../ui.gyp:ui', 34 '../ui.gyp:ui',
35 '../ui.gyp:ui_resources', 35 '../ui.gyp:ui_resources',
36 ], 36 ],
37 'defines': [ 37 'defines': [
38 'VIEWS_IMPLEMENTATION', 38 'VIEWS_IMPLEMENTATION',
39 ], 39 ],
40 'sources': [ 40 'sources': [
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 'target_name': 'views_unittests', 641 'target_name': 'views_unittests',
642 'type': 'executable', 642 'type': 'executable',
643 'dependencies': [ 643 'dependencies': [
644 '../../base/base.gyp:base', 644 '../../base/base.gyp:base',
645 '../../base/base.gyp:base_i18n', 645 '../../base/base.gyp:base_i18n',
646 '../../base/base.gyp:test_support_base', 646 '../../base/base.gyp:test_support_base',
647 # TODO(jcivelli): ideally the resource needed by views would be 647 # TODO(jcivelli): ideally the resource needed by views would be
648 # factored out. (for some reason it pulls in a bunch 648 # factored out. (for some reason it pulls in a bunch
649 # unrelated things like v8, sqlite nss...). 649 # unrelated things like v8, sqlite nss...).
650 '../../chrome/chrome_resources.gyp:packed_resources', 650 '../../chrome/chrome_resources.gyp:packed_resources',
651 '../../build/temp_gyp/googleurl.gyp:googleurl',
652 '../../skia/skia.gyp:skia', 651 '../../skia/skia.gyp:skia',
653 '../../testing/gmock.gyp:gmock', 652 '../../testing/gmock.gyp:gmock',
654 '../../testing/gtest.gyp:gtest', 653 '../../testing/gtest.gyp:gtest',
655 '../../third_party/icu/icu.gyp:icui18n', 654 '../../third_party/icu/icu.gyp:icui18n',
656 '../../third_party/icu/icu.gyp:icuuc', 655 '../../third_party/icu/icu.gyp:icuuc',
656 '../../url/url.gyp:url',
657 '../base/strings/ui_strings.gyp:ui_strings', 657 '../base/strings/ui_strings.gyp:ui_strings',
658 '../compositor/compositor.gyp:compositor', 658 '../compositor/compositor.gyp:compositor',
659 '../compositor/compositor.gyp:compositor_test_support', 659 '../compositor/compositor.gyp:compositor_test_support',
660 '../ui.gyp:ui', 660 '../ui.gyp:ui',
661 '../ui.gyp:ui_resources', 661 '../ui.gyp:ui_resources',
662 '../ui.gyp:ui_test_support', 662 '../ui.gyp:ui_test_support',
663 'views', 663 'views',
664 'views_test_support', 664 'views_test_support',
665 ], 665 ],
666 'include_dirs': [ 666 'include_dirs': [
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
855 'sources': [ 855 'sources': [
856 'examples/examples_main.cc', 856 'examples/examples_main.cc',
857 ], 857 ],
858 }, # target_name: views_examples_exe 858 }, # target_name: views_examples_exe
859 { 859 {
860 'target_name': 'views_examples_with_content_lib', 860 'target_name': 'views_examples_with_content_lib',
861 'type': '<(component)', 861 'type': '<(component)',
862 'dependencies': [ 862 'dependencies': [
863 '../../base/base.gyp:base', 863 '../../base/base.gyp:base',
864 '../../base/base.gyp:base_i18n', 864 '../../base/base.gyp:base_i18n',
865 '../../build/temp_gyp/googleurl.gyp:googleurl',
866 '../../chrome/chrome_resources.gyp:packed_resources', 865 '../../chrome/chrome_resources.gyp:packed_resources',
867 '../../content/content.gyp:content', 866 '../../content/content.gyp:content',
868 '../../skia/skia.gyp:skia', 867 '../../skia/skia.gyp:skia',
869 '../../third_party/icu/icu.gyp:icui18n', 868 '../../third_party/icu/icu.gyp:icui18n',
870 '../../third_party/icu/icu.gyp:icuuc', 869 '../../third_party/icu/icu.gyp:icuuc',
870 '../../url/url.gyp:url',
871 '../ui.gyp:ui', 871 '../ui.gyp:ui',
872 '../ui.gyp:ui_resources', 872 '../ui.gyp:ui_resources',
873 'controls/webview/webview.gyp:webview', 873 'controls/webview/webview.gyp:webview',
874 'views', 874 'views',
875 ], 875 ],
876 'include_dirs': [ 876 'include_dirs': [
877 '..', 877 '..',
878 ], 878 ],
879 'defines': [ 879 'defines': [
880 'VIEWS_EXAMPLES_WITH_CONTENT_IMPLEMENTATION', 880 'VIEWS_EXAMPLES_WITH_CONTENT_IMPLEMENTATION',
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
1006 'sources/': [ 1006 'sources/': [
1007 # This is needed because the aura rule strips it from the default 1007 # This is needed because the aura rule strips it from the default
1008 # sources list. 1008 # sources list.
1009 ['include', '^../../content/app/startup_helper_win.cc'], 1009 ['include', '^../../content/app/startup_helper_win.cc'],
1010 ], 1010 ],
1011 }], 1011 }],
1012 ], 1012 ],
1013 }, # target_name: views_examples_with_content_exe 1013 }, # target_name: views_examples_with_content_exe
1014 ], 1014 ],
1015 } 1015 }
OLDNEW
« no previous file with comments | « ui/views/controls/webview/webview.gyp ('k') | url/url.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698