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

Side by Side Diff: ui/ui.gyp

Issue 8595003: Have panels respond to changes in work area on Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile linux_view and chromeos. Created 9 years, 1 month 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/base/x/x11_util.cc ('k') | views/widget/native_widget_gtk.h » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'base/win/ime_input.cc', 218 'base/win/ime_input.cc',
219 'base/win/ime_input.h', 219 'base/win/ime_input.h',
220 'base/win/mouse_wheel_util.cc', 220 'base/win/mouse_wheel_util.cc',
221 'base/win/mouse_wheel_util.h', 221 'base/win/mouse_wheel_util.h',
222 'base/win/shell.cc', 222 'base/win/shell.cc',
223 'base/win/shell.h', 223 'base/win/shell.h',
224 'base/win/window_impl.cc', 224 'base/win/window_impl.cc',
225 'base/win/window_impl.h', 225 'base/win/window_impl.h',
226 'base/x/active_window_watcher_x.cc', 226 'base/x/active_window_watcher_x.cc',
227 'base/x/active_window_watcher_x.h', 227 'base/x/active_window_watcher_x.h',
228 'base/x/active_window_watcher_x_observer.h',
228 'base/x/events_x.cc', 229 'base/x/events_x.cc',
230 'base/x/root_window_property_watcher_x.cc',
231 'base/x/root_window_property_watcher_x.h',
232 'base/x/work_area_watcher_x.cc',
233 'base/x/work_area_watcher_x.h',
234 'base/x/work_area_watcher_x_observer.h',
229 'base/x/x11_util.cc', 235 'base/x/x11_util.cc',
230 'base/x/x11_util.h', 236 'base/x/x11_util.h',
231 'base/x/x11_util_internal.h', 237 'base/x/x11_util_internal.h',
232 'gfx/blit.cc', 238 'gfx/blit.cc',
233 'gfx/blit.h', 239 'gfx/blit.h',
234 'gfx/brush.h', 240 'gfx/brush.h',
235 'gfx/canvas.cc', 241 'gfx/canvas.cc',
236 'gfx/canvas.h', 242 'gfx/canvas.h',
237 'gfx/canvas_skia.h', 243 'gfx/canvas_skia.h',
238 'gfx/canvas_skia.cc', 244 'gfx/canvas_skia.cc',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 ['exclude', 'gfx/screen_gtk.cc'], 345 ['exclude', 'gfx/screen_gtk.cc'],
340 ['exclude', 'gfx/native_theme_chromeos.cc'], 346 ['exclude', 'gfx/native_theme_chromeos.cc'],
341 ['exclude', 'gfx/native_theme_chromeos.h'], 347 ['exclude', 'gfx/native_theme_chromeos.h'],
342 ['exclude', 'gfx/screen_win.cc'], 348 ['exclude', 'gfx/screen_win.cc'],
343 ['exclude', 'base/view_prop.cc'], 349 ['exclude', 'base/view_prop.cc'],
344 ['exclude', 'base/view_prop.h'], 350 ['exclude', 'base/view_prop.h'],
345 ['exclude', 'base/win/mouse_wheel_util.cc'], 351 ['exclude', 'base/win/mouse_wheel_util.cc'],
346 ['exclude', 'base/win/mouse_wheel_util.h'], 352 ['exclude', 'base/win/mouse_wheel_util.h'],
347 ['exclude', 'base/x/active_window_watcher_x.cc'], 353 ['exclude', 'base/x/active_window_watcher_x.cc'],
348 ['exclude', 'base/x/active_window_watcher_x.h'], 354 ['exclude', 'base/x/active_window_watcher_x.h'],
355 ['exclude', 'base/x/active_window_watcher_x_observer.h'],
356 ['exclude', 'base/x/root_window_property_watcher_x.cc'],
357 ['exclude', 'base/x/root_window_property_watcher_x.h'],
358 ['exclude', 'base/x/work_area_watcher_x.cc'],
359 ['exclude', 'base/x/work_area_watcher_x.h'],
360 ['exclude', 'base/x/work_area_watcher_x_observer.h'],
349 ], 361 ],
350 }, { # use_aura!=1 362 }, { # use_aura!=1
351 'sources!': [ 363 'sources!': [
352 'gfx/native_theme_aura.cc', 364 'gfx/native_theme_aura.cc',
353 'gfx/native_theme_aura.h', 365 'gfx/native_theme_aura.h',
354 ] 366 ]
355 }], 367 }],
356 ['use_aura==1 and OS=="win"', { 368 ['use_aura==1 and OS=="win"', {
357 'sources/': [ 369 'sources/': [
358 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'], 370 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'],
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 'link_settings': { 547 'link_settings': {
536 'libraries': [ 548 'libraries': [
537 '-lX11', 549 '-lX11',
538 ], 550 ],
539 }, 551 },
540 }, 552 },
541 }, { # use_x11==0 553 }, { # use_x11==0
542 'sources!': [ 554 'sources!': [
543 'base/keycodes/keyboard_code_conversion_x.cc', 555 'base/keycodes/keyboard_code_conversion_x.cc',
544 'base/keycodes/keyboard_code_conversion_x.h', 556 'base/keycodes/keyboard_code_conversion_x.h',
545 'base/x/active_window_watcher_x.cc', 557 'base/x/',
546 'base/x/active_window_watcher_x.h',
547 'base/x/events_x.cc',
548 'base/x/x11_util.cc',
549 'base/x/x11_util.h',
550 'base/x/x11_util_internal.h',
551 ], 558 ],
552 }], 559 }],
553 ['chromeos==1', { 560 ['chromeos==1', {
554 # On Chrome OS we replace the default GTK look with a special look. 561 # On Chrome OS we replace the default GTK look with a special look.
555 'sources!': [ 562 'sources!': [
556 'gfx/native_theme_gtk.cc', 563 'gfx/native_theme_gtk.cc',
557 'gfx/native_theme_gtk.h', 564 'gfx/native_theme_gtk.h',
558 ] 565 ]
559 }, { # chromeos != 1 566 }, { # chromeos != 1
560 'sources!': [ 567 'sources!': [
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 649 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
643 'os.chmod(\'<(ui_copy_dest)\', 0700)' 650 'os.chmod(\'<(ui_copy_dest)\', 0700)'
644 ] 651 ]
645 } 652 }
646 ], 653 ],
647 }, 654 },
648 ], 655 ],
649 }], 656 }],
650 ], 657 ],
651 } 658 }
OLDNEW
« no previous file with comments | « ui/base/x/x11_util.cc ('k') | views/widget/native_widget_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698