OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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/': [ |
11 ['exclude', '/(cocoa|gtk|win)/'], | 11 ['exclude', '/(cocoa|gtk|win)/'], |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 '../base/base.gyp:base', | 366 '../base/base.gyp:base', |
367 '../skia/skia.gyp:skia', | 367 '../skia/skia.gyp:skia', |
368 '../third_party/icu/icu.gyp:icui18n', | 368 '../third_party/icu/icu.gyp:icui18n', |
369 '../third_party/icu/icu.gyp:icuuc', | 369 '../third_party/icu/icu.gyp:icuuc', |
370 'views', | 370 'views', |
371 ], | 371 ], |
372 'include_dirs': [ | 372 'include_dirs': [ |
373 '..', | 373 '..', |
374 ], | 374 ], |
375 'sources': [ | 375 'sources': [ |
| 376 'examples/box_layout.cc', |
| 377 'examples/box_layout.h', |
376 'examples/button_example.h', | 378 'examples/button_example.h', |
377 'examples/combobox_example.h', | 379 'examples/combobox_example.h', |
378 'examples/example_base.cc', | 380 'examples/example_base.cc', |
379 'examples/example_base.h', | 381 'examples/example_base.h', |
380 'examples/examples_main.cc', | 382 'examples/examples_main.cc', |
381 'examples/examples_main.h', | 383 'examples/examples_main.h', |
382 'examples/message_box_example.h', | 384 'examples/message_box_example.h', |
383 'examples/menu_example.h', | 385 'examples/menu_example.h', |
384 'examples/radio_button_example.h', | 386 'examples/radio_button_example.h', |
385 'examples/scroll_view_example.h', | 387 'examples/scroll_view_example.h', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 ], | 422 ], |
421 }, | 423 }, |
422 ], | 424 ], |
423 } | 425 } |
424 | 426 |
425 # Local Variables: | 427 # Local Variables: |
426 # tab-width:2 | 428 # tab-width:2 |
427 # indent-tabs-mode:nil | 429 # indent-tabs-mode:nil |
428 # End: | 430 # End: |
429 # vim: set expandtab tabstop=2 shiftwidth=2: | 431 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |