| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'sources/': [ | 10 'sources/': [ |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 'conditions': [ | 342 'conditions': [ |
| 343 # TODO(oshima): support win | 343 # TODO(oshima): support win |
| 344 ['OS!="win"', { | 344 ['OS!="win"', { |
| 345 'targets': [ | 345 'targets': [ |
| 346 { | 346 { |
| 347 'target_name': 'view_examples', | 347 'target_name': 'view_examples', |
| 348 'type': 'executable', | 348 'type': 'executable', |
| 349 'dependencies': [ | 349 'dependencies': [ |
| 350 '../base/base.gyp:base', | 350 '../base/base.gyp:base', |
| 351 '../skia/skia.gyp:skia', | 351 '../skia/skia.gyp:skia', |
| 352 '../build/linux/system.gyp:x11', |
| 352 'views', | 353 'views', |
| 353 ], | 354 ], |
| 354 'include_dirs': [ | 355 'include_dirs': [ |
| 355 '..', | 356 '..', |
| 356 ], | 357 ], |
| 357 'sources': [ | 358 'sources': [ |
| 358 'examples/button_example.h', | 359 'examples/button_example.h', |
| 359 'examples/combobox_example.h', | 360 'examples/combobox_example.h', |
| 360 'examples/example_base.cc', | 361 'examples/example_base.cc', |
| 361 'examples/example_base.h', | 362 'examples/example_base.h', |
| 362 'examples/examples_main_base.cc', | 363 'examples/examples_main_base.cc', |
| 363 'examples/examples_main_base.h', | 364 'examples/examples_main_base.h', |
| 364 'examples/examples_main_gtk.cc', | 365 'examples/examples_main_gtk.cc', |
| 365 'examples/message_box_example.h', | 366 'examples/message_box_example.h', |
| 366 'examples/radio_button_example.h', | 367 'examples/radio_button_example.h', |
| 367 'examples/tabbed_pane_example.h', | 368 'examples/tabbed_pane_example.h', |
| 369 'examples/textfield_example.h', |
| 368 ], | 370 ], |
| 369 'conditions': [ | 371 'conditions': [ |
| 370 ['OS=="linux"', { | 372 ['OS=="linux"', { |
| 371 'dependencies': [ | 373 'dependencies': [ |
| 372 '../build/linux/system.gyp:gtk', | 374 '../build/linux/system.gyp:gtk', |
| 373 ], | 375 ], |
| 374 }, | 376 }, |
| 375 ], | 377 ], |
| 376 ['OS=="linux" and toolkit_views==1', { | 378 ['OS=="linux" and toolkit_views==1', { |
| 377 'dependencies': [ | 379 'dependencies': [ |
| 378 'views', | 380 'views', |
| 379 ], | 381 ], |
| 380 }], | 382 }], |
| 381 ], | 383 ], |
| 382 }, | 384 }, |
| 383 ], | 385 ], |
| 384 }], | 386 }], |
| 385 ], | 387 ], |
| 386 } | 388 } |
| 387 | 389 |
| 388 # Local Variables: | 390 # Local Variables: |
| 389 # tab-width:2 | 391 # tab-width:2 |
| 390 # indent-tabs-mode:nil | 392 # indent-tabs-mode:nil |
| 391 # End: | 393 # End: |
| 392 # vim: set expandtab tabstop=2 shiftwidth=2: | 394 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |