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

Side by Side Diff: ui/base/ui_base.gyp

Issue 312393002: ozone: Move the factory interfaces into a common target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 6 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'cursor/cursor_util.cc', 129 'cursor/cursor_util.cc',
130 'cursor/cursor_util.h', 130 'cursor/cursor_util.h',
131 'cursor/cursor_win.cc', 131 'cursor/cursor_win.cc',
132 'cursor/cursor_x11.cc', 132 'cursor/cursor_x11.cc',
133 'cursor/cursors_aura.cc', 133 'cursor/cursors_aura.cc',
134 'cursor/cursors_aura.h', 134 'cursor/cursors_aura.h',
135 'cursor/image_cursors.cc', 135 'cursor/image_cursors.cc',
136 'cursor/image_cursors.h', 136 'cursor/image_cursors.h',
137 'cursor/ozone/bitmap_cursor_factory_ozone.cc', 137 'cursor/ozone/bitmap_cursor_factory_ozone.cc',
138 'cursor/ozone/bitmap_cursor_factory_ozone.h', 138 'cursor/ozone/bitmap_cursor_factory_ozone.h',
139 'cursor/ozone/cursor_factory_ozone.cc',
140 'cursor/ozone/cursor_factory_ozone.h',
141 'default_theme_provider.cc', 139 'default_theme_provider.cc',
142 'default_theme_provider.h', 140 'default_theme_provider.h',
143 'default_theme_provider_mac.mm', 141 'default_theme_provider_mac.mm',
144 'device_form_factor_android.cc', 142 'device_form_factor_android.cc',
145 'device_form_factor_android.h', 143 'device_form_factor_android.h',
146 'device_form_factor_desktop.cc', 144 'device_form_factor_desktop.cc',
147 'device_form_factor_ios.mm', 145 'device_form_factor_ios.mm',
148 'device_form_factor.h', 146 'device_form_factor.h',
149 'dragdrop/cocoa_dnd_util.h', 147 'dragdrop/cocoa_dnd_util.h',
150 'dragdrop/cocoa_dnd_util.mm', 148 'dragdrop/cocoa_dnd_util.mm',
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 'x/selection_requestor.h', 361 'x/selection_requestor.h',
364 'x/selection_utils.cc', 362 'x/selection_utils.cc',
365 'x/selection_utils.h', 363 'x/selection_utils.h',
366 ] 364 ]
367 }], 365 }],
368 ['use_aura==0 or OS!="linux"', { 366 ['use_aura==0 or OS!="linux"', {
369 'sources!': [ 367 'sources!': [
370 'resource/resource_bundle_auralinux.cc', 368 'resource/resource_bundle_auralinux.cc',
371 ], 369 ],
372 }], 370 }],
371 ['use_ozone==1', {
372 'dependencies': [
373 '../ozone/ozone.gyp:ozone_base',
374 ],
375 }],
373 ['use_aura==1 and OS=="win"', { 376 ['use_aura==1 and OS=="win"', {
374 'sources/': [ 377 'sources/': [
375 ['exclude', 'dragdrop/drag_utils_aura.cc'], 378 ['exclude', 'dragdrop/drag_utils_aura.cc'],
376 ], 379 ],
377 }], 380 }],
378 ['use_glib == 1', { 381 ['use_glib == 1', {
379 'dependencies': [ 382 'dependencies': [
380 '../../build/linux/system.gyp:fontconfig', 383 '../../build/linux/system.gyp:fontconfig',
381 '../../build/linux/system.gyp:glib', 384 '../../build/linux/system.gyp:glib',
382 ], 385 ],
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 ], 632 ],
630 'variables': { 633 'variables': {
631 'jni_gen_package': 'ui', 634 'jni_gen_package': 'ui',
632 }, 635 },
633 'includes': [ '../../build/jni_generator.gypi' ], 636 'includes': [ '../../build/jni_generator.gypi' ],
634 }, 637 },
635 ], 638 ],
636 }], 639 }],
637 ], 640 ],
638 } 641 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698