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

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

Issue 284743009: events: Create a separate platforms target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 7 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/ui_unittests.gyp ('k') | no next file » | 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', {
(...skipping 16 matching lines...) Expand all
27 '../../third_party/icu/icu.gyp:icui18n', 27 '../../third_party/icu/icu.gyp:icui18n',
28 '../../third_party/icu/icu.gyp:icuuc', 28 '../../third_party/icu/icu.gyp:icuuc',
29 '../../url/url.gyp:url_lib', 29 '../../url/url.gyp:url_lib',
30 '../accessibility/accessibility.gyp:accessibility', 30 '../accessibility/accessibility.gyp:accessibility',
31 '../accessibility/accessibility.gyp:ax_gen', 31 '../accessibility/accessibility.gyp:ax_gen',
32 '../base/strings/ui_strings.gyp:ui_strings', 32 '../base/strings/ui_strings.gyp:ui_strings',
33 '../base/ui_base.gyp:ui_base', 33 '../base/ui_base.gyp:ui_base',
34 '../compositor/compositor.gyp:compositor', 34 '../compositor/compositor.gyp:compositor',
35 '../events/events.gyp:events', 35 '../events/events.gyp:events',
36 '../events/events.gyp:events_base', 36 '../events/events.gyp:events_base',
37 '../events/platform/events_platform.gyp:events_platform',
37 '../gfx/gfx.gyp:gfx', 38 '../gfx/gfx.gyp:gfx',
38 '../gfx/gfx.gyp:gfx_geometry', 39 '../gfx/gfx.gyp:gfx_geometry',
39 '../native_theme/native_theme.gyp:native_theme', 40 '../native_theme/native_theme.gyp:native_theme',
40 '../resources/ui_resources.gyp:ui_resources', 41 '../resources/ui_resources.gyp:ui_resources',
41 ], 42 ],
42 'export_dependent_settings': [ 43 'export_dependent_settings': [
43 '../accessibility/accessibility.gyp:ax_gen', 44 '../accessibility/accessibility.gyp:ax_gen',
44 ], 45 ],
45 'defines': [ 46 'defines': [
46 'VIEWS_IMPLEMENTATION', 47 'VIEWS_IMPLEMENTATION',
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 }], 515 }],
515 ['use_ozone==1', { 516 ['use_ozone==1', {
516 'dependencies': [ 517 'dependencies': [
517 '../ozone/ozone.gyp:ozone', 518 '../ozone/ozone.gyp:ozone',
518 ], 519 ],
519 }], 520 }],
520 ['use_x11==1', { 521 ['use_x11==1', {
521 'dependencies': [ 522 'dependencies': [
522 '../../build/linux/system.gyp:x11', 523 '../../build/linux/system.gyp:x11',
523 '../../build/linux/system.gyp:xrandr', 524 '../../build/linux/system.gyp:xrandr',
525 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
524 ], 526 ],
525 }], 527 }],
526 ], 528 ],
527 }, # target_name: views 529 }, # target_name: views
528 { 530 {
529 'target_name': 'views_test_support', 531 'target_name': 'views_test_support',
530 'type': 'static_library', 532 'type': 'static_library',
531 'dependencies': [ 533 'dependencies': [
532 '../../base/base.gyp:base', 534 '../../base/base.gyp:base',
533 '../../ipc/ipc.gyp:test_support_ipc', 535 '../../ipc/ipc.gyp:test_support_ipc',
534 '../../skia/skia.gyp:skia', 536 '../../skia/skia.gyp:skia',
535 '../../testing/gtest.gyp:gtest', 537 '../../testing/gtest.gyp:gtest',
536 '../base/ui_base.gyp:ui_base', 538 '../base/ui_base.gyp:ui_base',
537 '../compositor/compositor.gyp:compositor', 539 '../compositor/compositor.gyp:compositor',
538 '../events/events.gyp:events', 540 '../events/events.gyp:events',
541 '../events/platform/events_platform.gyp:events_platform',
539 '../gfx/gfx.gyp:gfx', 542 '../gfx/gfx.gyp:gfx',
540 '../gfx/gfx.gyp:gfx_geometry', 543 '../gfx/gfx.gyp:gfx_geometry',
541 'views', 544 'views',
542 ], 545 ],
543 'include_dirs': [ 546 'include_dirs': [
544 '..', 547 '..',
545 ], 548 ],
546 'sources': [ 549 'sources': [
547 'corewm/tooltip_controller_test_helper.cc', 550 'corewm/tooltip_controller_test_helper.cc',
548 'corewm/tooltip_controller_test_helper.h', 551 'corewm/tooltip_controller_test_helper.h',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 ['use_ozone==1', { 728 ['use_ozone==1', {
726 'sources!': [ 729 'sources!': [
727 'corewm/capture_controller_unittest.cc', 730 'corewm/capture_controller_unittest.cc',
728 ], 731 ],
729 }], 732 }],
730 ['use_aura==1', { 733 ['use_aura==1', {
731 'dependencies': [ 734 'dependencies': [
732 '../aura/aura.gyp:aura_test_support', 735 '../aura/aura.gyp:aura_test_support',
733 ], 736 ],
734 }], 737 }],
738 ['use_x11==1', {
739 'dependencies': [
740 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
741 ],
742 }],
735 ], 743 ],
736 }, # target_name: views_unittests 744 }, # target_name: views_unittests
737 ], 745 ],
738 } 746 }
OLDNEW
« no previous file with comments | « ui/ui_unittests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698