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

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: no need to forward in temp_gyp 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
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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 'target_name': 'views_unittests', 643 'target_name': 'views_unittests',
644 'type': 'executable', 644 'type': 'executable',
645 'dependencies': [ 645 'dependencies': [
646 '../../base/base.gyp:base', 646 '../../base/base.gyp:base',
647 '../../base/base.gyp:base_i18n', 647 '../../base/base.gyp:base_i18n',
648 '../../base/base.gyp:test_support_base', 648 '../../base/base.gyp:test_support_base',
649 # TODO(jcivelli): ideally the resource needed by views would be 649 # TODO(jcivelli): ideally the resource needed by views would be
650 # factored out. (for some reason it pulls in a bunch 650 # factored out. (for some reason it pulls in a bunch
651 # unrelated things like v8, sqlite nss...). 651 # unrelated things like v8, sqlite nss...).
652 '../../chrome/chrome_resources.gyp:packed_resources', 652 '../../chrome/chrome_resources.gyp:packed_resources',
653 '../../build/temp_gyp/googleurl.gyp:googleurl',
654 '../../skia/skia.gyp:skia', 653 '../../skia/skia.gyp:skia',
655 '../../testing/gmock.gyp:gmock', 654 '../../testing/gmock.gyp:gmock',
656 '../../testing/gtest.gyp:gtest', 655 '../../testing/gtest.gyp:gtest',
657 '../../third_party/icu/icu.gyp:icui18n', 656 '../../third_party/icu/icu.gyp:icui18n',
658 '../../third_party/icu/icu.gyp:icuuc', 657 '../../third_party/icu/icu.gyp:icuuc',
658 '../../url/url.gyp:url',
659 '../base/strings/ui_strings.gyp:ui_strings', 659 '../base/strings/ui_strings.gyp:ui_strings',
660 '../compositor/compositor.gyp:compositor', 660 '../compositor/compositor.gyp:compositor',
661 '../compositor/compositor.gyp:compositor_test_support', 661 '../compositor/compositor.gyp:compositor_test_support',
662 '../ui.gyp:ui', 662 '../ui.gyp:ui',
663 '../ui.gyp:ui_resources', 663 '../ui.gyp:ui_resources',
664 '../ui.gyp:ui_test_support', 664 '../ui.gyp:ui_test_support',
665 'views', 665 'views',
666 'views_test_support', 666 'views_test_support',
667 ], 667 ],
668 'include_dirs': [ 668 'include_dirs': [
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 'sources': [ 857 'sources': [
858 'examples/examples_main.cc', 858 'examples/examples_main.cc',
859 ], 859 ],
860 }, # target_name: views_examples_exe 860 }, # target_name: views_examples_exe
861 { 861 {
862 'target_name': 'views_examples_with_content_lib', 862 'target_name': 'views_examples_with_content_lib',
863 'type': '<(component)', 863 'type': '<(component)',
864 'dependencies': [ 864 'dependencies': [
865 '../../base/base.gyp:base', 865 '../../base/base.gyp:base',
866 '../../base/base.gyp:base_i18n', 866 '../../base/base.gyp:base_i18n',
867 '../../build/temp_gyp/googleurl.gyp:googleurl',
868 '../../chrome/chrome_resources.gyp:packed_resources', 867 '../../chrome/chrome_resources.gyp:packed_resources',
869 '../../content/content.gyp:content', 868 '../../content/content.gyp:content',
870 '../../skia/skia.gyp:skia', 869 '../../skia/skia.gyp:skia',
871 '../../third_party/icu/icu.gyp:icui18n', 870 '../../third_party/icu/icu.gyp:icui18n',
872 '../../third_party/icu/icu.gyp:icuuc', 871 '../../third_party/icu/icu.gyp:icuuc',
872 '../../url/url.gyp:url',
873 '../ui.gyp:ui', 873 '../ui.gyp:ui',
874 '../ui.gyp:ui_resources', 874 '../ui.gyp:ui_resources',
875 'controls/webview/webview.gyp:webview', 875 'controls/webview/webview.gyp:webview',
876 'views', 876 'views',
877 ], 877 ],
878 'include_dirs': [ 878 'include_dirs': [
879 '..', 879 '..',
880 ], 880 ],
881 'defines': [ 881 'defines': [
882 'VIEWS_EXAMPLES_WITH_CONTENT_IMPLEMENTATION', 882 'VIEWS_EXAMPLES_WITH_CONTENT_IMPLEMENTATION',
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 'sources/': [ 1008 'sources/': [
1009 # This is needed because the aura rule strips it from the default 1009 # This is needed because the aura rule strips it from the default
1010 # sources list. 1010 # sources list.
1011 ['include', '^../../content/app/startup_helper_win.cc'], 1011 ['include', '^../../content/app/startup_helper_win.cc'],
1012 ], 1012 ],
1013 }], 1013 }],
1014 ], 1014 ],
1015 }, # target_name: views_examples_with_content_exe 1015 }, # target_name: views_examples_with_content_exe
1016 ], 1016 ],
1017 } 1017 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698