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

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

Issue 1109493002: [MacViews] Fix behavior of non-resizable windows in fullscreen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't build nswindow_fullscreen_notification_waiter.mm on IOS. Created 5 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
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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 'conditions': [ 662 'conditions': [
663 ['OS!="ios"', { 663 ['OS!="ios"', {
664 'dependecies': [ 664 'dependecies': [
665 'ime/ui_base_ime.gyp:ui_base_ime', 665 'ime/ui_base_ime.gyp:ui_base_ime',
666 ], 666 ],
667 'sources': [ 667 'sources': [
668 'ime/dummy_input_method.cc', 668 'ime/dummy_input_method.cc',
669 'ime/dummy_input_method.h', 669 'ime/dummy_input_method.h',
670 'ime/dummy_text_input_client.cc', 670 'ime/dummy_text_input_client.cc',
671 'ime/dummy_text_input_client.h', 671 'ime/dummy_text_input_client.h',
672 'test/nswindow_fullscreen_notification_waiter.h',
673 'test/nswindow_fullscreen_notification_waiter.mm',
tapted 2015/05/13 07:26:34 You'll need a .gn change for this too. It's weird
jackhou1 2015/05/14 04:38:34 Done.
672 ], 674 ],
673 }], 675 }],
674 ['use_aura==1', { 676 ['use_aura==1', {
675 'sources!': [ 677 'sources!': [
676 'test/ui_controls_mac.mm', 678 'test/ui_controls_mac.mm',
677 'test/ui_controls_win.cc', 679 'test/ui_controls_win.cc',
678 ], 680 ],
679 }], 681 }],
680 ], 682 ],
681 }, 683 },
(...skipping 16 matching lines...) Expand all
698 ], 700 ],
699 'variables': { 701 'variables': {
700 'jni_gen_package': 'ui', 702 'jni_gen_package': 'ui',
701 }, 703 },
702 'includes': [ '../../build/jni_generator.gypi' ], 704 'includes': [ '../../build/jni_generator.gypi' ],
703 }, 705 },
704 ], 706 ],
705 }], 707 }],
706 ], 708 ],
707 } 709 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698