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

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

Issue 1092183005: Fix Up SingletonHwnd Observer Lifetime Issues (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Allow null SingletonHwnd Hwnd 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 'vsync_provider.h', 301 'vsync_provider.h',
302 'win/direct_write.cc', 302 'win/direct_write.cc',
303 'win/direct_write.h', 303 'win/direct_write.h',
304 'win/dpi.cc', 304 'win/dpi.cc',
305 'win/dpi.h', 305 'win/dpi.h',
306 'win/hwnd_util.cc', 306 'win/hwnd_util.cc',
307 'win/hwnd_util.h', 307 'win/hwnd_util.h',
308 'win/scoped_set_map_mode.h', 308 'win/scoped_set_map_mode.h',
309 'win/singleton_hwnd.cc', 309 'win/singleton_hwnd.cc',
310 'win/singleton_hwnd.h', 310 'win/singleton_hwnd.h',
311 'win/singleton_hwnd_observer.cc',
312 'win/singleton_hwnd_observer.h',
311 'win/window_impl.cc', 313 'win/window_impl.cc',
312 'win/window_impl.h', 314 'win/window_impl.h',
313 ], 315 ],
314 'includes': [ 316 'includes': [
315 '../../build/android/increase_size_for_speed.gypi', 317 '../../build/android/increase_size_for_speed.gypi',
316 ], 318 ],
317 'conditions': [ 319 'conditions': [
318 ['OS=="ios"', { 320 ['OS=="ios"', {
319 # Linkable dependents need to set the linker flag '-ObjC' in order to 321 # Linkable dependents need to set the linker flag '-ObjC' in order to
320 # use the categories in this target (e.g. NSString+CrStringDrawing.h). 322 # use the categories in this target (e.g. NSString+CrStringDrawing.h).
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 ], 480 ],
479 'variables': { 481 'variables': {
480 'jni_gen_package': 'ui/gfx', 482 'jni_gen_package': 'ui/gfx',
481 }, 483 },
482 'includes': [ '../../build/jni_generator.gypi' ], 484 'includes': [ '../../build/jni_generator.gypi' ],
483 }, 485 },
484 ], 486 ],
485 }], 487 }],
486 ], 488 ],
487 } 489 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698