| OLD | NEW |
| 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 | 8 |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 'widget/native_widget_aura.h', | 337 'widget/native_widget_aura.h', |
| 338 'widget/native_widget_delegate.h', | 338 'widget/native_widget_delegate.h', |
| 339 'widget/native_widget_helper_aura.h', | 339 'widget/native_widget_helper_aura.h', |
| 340 'widget/native_widget_private.h', | 340 'widget/native_widget_private.h', |
| 341 'widget/native_widget_win.cc', | 341 'widget/native_widget_win.cc', |
| 342 'widget/native_widget_win.h', | 342 'widget/native_widget_win.h', |
| 343 'widget/widget.cc', | 343 'widget/widget.cc', |
| 344 'widget/widget.h', | 344 'widget/widget.h', |
| 345 'widget/widget_delegate.cc', | 345 'widget/widget_delegate.cc', |
| 346 'widget/widget_delegate.h', | 346 'widget/widget_delegate.h', |
| 347 'widget/widget_hwnd_utils.cc', |
| 348 'widget/widget_hwnd_utils.h', |
| 349 'widget/widget_message_filter.cc', |
| 350 'widget/widget_message_filter.h', |
| 347 'window/client_view.cc', | 351 'window/client_view.cc', |
| 348 'window/client_view.h', | 352 'window/client_view.h', |
| 349 'window/custom_frame_view.cc', | 353 'window/custom_frame_view.cc', |
| 350 'window/custom_frame_view.h', | 354 'window/custom_frame_view.h', |
| 351 'window/dialog_client_view.cc', | 355 'window/dialog_client_view.cc', |
| 352 'window/dialog_client_view.h', | 356 'window/dialog_client_view.h', |
| 353 'window/dialog_delegate.cc', | 357 'window/dialog_delegate.cc', |
| 354 'window/dialog_delegate.h', | 358 'window/dialog_delegate.h', |
| 355 'window/frame_background.cc', | 359 'window/frame_background.cc', |
| 356 'window/frame_background.h', | 360 'window/frame_background.h', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 ], | 429 ], |
| 426 'include_dirs': [ | 430 'include_dirs': [ |
| 427 '../../third_party/wtl/include', | 431 '../../third_party/wtl/include', |
| 428 ], | 432 ], |
| 429 }], | 433 }], |
| 430 ['use_x11==0', { | 434 ['use_x11==0', { |
| 431 'sources!': [ | 435 'sources!': [ |
| 432 'events/event_x.cc', | 436 'events/event_x.cc', |
| 433 ], | 437 ], |
| 434 }], | 438 }], |
| 439 ['use_aura==0 or OS!="win"', { |
| 440 'sources!': [ |
| 441 'widget/widget_message_filter.cc', |
| 442 'widget/widget_message_filter.h', |
| 443 ], |
| 444 }], |
| 445 ['OS!="win"', { |
| 446 'sources!': [ |
| 447 'widget/widget_hwnd_utils.cc', |
| 448 'widget/widget_hwnd_utils.h', |
| 449 ], |
| 450 }], |
| 435 ], | 451 ], |
| 436 }, # target_name: views | 452 }, # target_name: views |
| 437 { | 453 { |
| 438 'target_name': 'views_unittests', | 454 'target_name': 'views_unittests', |
| 439 'type': 'executable', | 455 'type': 'executable', |
| 440 'dependencies': [ | 456 'dependencies': [ |
| 441 '../../base/base.gyp:base', | 457 '../../base/base.gyp:base', |
| 442 '../../base/base.gyp:test_support_base', | 458 '../../base/base.gyp:test_support_base', |
| 443 # TODO(jcivelli): ideally the resource needed by views would be | 459 # TODO(jcivelli): ideally the resource needed by views would be |
| 444 # factored out. (for some reason it pulls in a bunch | 460 # factored out. (for some reason it pulls in a bunch |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 'sources/': [ | 712 'sources/': [ |
| 697 # This is needed because the aura rule strips it from the default | 713 # This is needed because the aura rule strips it from the default |
| 698 # sources list. | 714 # sources list. |
| 699 ['include', '^../../content/app/startup_helper_win.cc'], | 715 ['include', '^../../content/app/startup_helper_win.cc'], |
| 700 ], | 716 ], |
| 701 }], | 717 }], |
| 702 ], | 718 ], |
| 703 }, # target_name: views_examples_lib | 719 }, # target_name: views_examples_lib |
| 704 ], | 720 ], |
| 705 } | 721 } |
| OLD | NEW |