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 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 # Linux has an implementation of idle_timer that depends | 309 # Linux has an implementation of idle_timer that depends |
310 # on XScreenSaver, but it's unclear if we want it yet, | 310 # on XScreenSaver, but it's unclear if we want it yet, |
311 # so use idle_timer_none.cc instead. | 311 # so use idle_timer_none.cc instead. |
312 'idle_timer.cc', | 312 'idle_timer.cc', |
313 ], | 313 ], |
314 'cflags': ['-Wno-write-strings'], | 314 'cflags': ['-Wno-write-strings'], |
315 }, | 315 }, |
316 { # else: OS != "linux" | 316 { # else: OS != "linux" |
317 'sources!': [ | 317 'sources!': [ |
318 'atomicops_internals_x86_gcc.cc', | 318 'atomicops_internals_x86_gcc.cc', |
319 'data_pack.cc', | |
320 'hmac_nss.cc', | 319 'hmac_nss.cc', |
321 'idle_timer_none.cc', | 320 'idle_timer_none.cc', |
322 'message_pump_glib.cc', | 321 'message_pump_glib.cc', |
323 'nss_init.cc', | 322 'nss_init.cc', |
324 'time_posix.cc', | 323 'time_posix.cc', |
325 ], | 324 ], |
326 } | 325 } |
327 ], | 326 ], |
328 [ 'OS == "mac"', { | 327 [ 'OS == "mac"', { |
329 'sources/': [ ['exclude', '_(linux|win)\\.cc$'] ], | 328 'sources/': [ ['exclude', '_(linux|win)\\.cc$'] ], |
330 'sources!': [ | 329 'sources!': [ |
331 'worker_pool.cc', | 330 'worker_pool.cc', |
332 ], | 331 ], |
333 'link_settings': { | 332 'link_settings': { |
334 'libraries': [ | 333 'libraries': [ |
335 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', | 334 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
336 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', | 335 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
337 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 336 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
338 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 337 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
339 ], | 338 ], |
340 }, | 339 }, |
341 }, | 340 }, |
342 ], | 341 ], |
343 [ 'OS == "win"', { | 342 [ 'OS == "win"', { |
344 'sources/': [ ['exclude', '_(linux|mac|posix)\\.cc$'], | 343 'sources/': [ ['exclude', '_(linux|mac|posix)\\.cc$'], |
345 ['exclude', '\\.mm?$' ] ], | 344 ['exclude', '\\.mm?$' ] ], |
346 'sources!': [ | 345 'sources!': [ |
| 346 'data_pack.cc', |
347 'event_recorder_stubs.cc', | 347 'event_recorder_stubs.cc', |
348 'message_pump_libevent.cc', | 348 'message_pump_libevent.cc', |
349 'string16.cc', | 349 'string16.cc', |
350 ], | 350 ], |
351 }, | 351 }, |
352 { # else: OS != "win" | 352 { # else: OS != "win" |
353 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], | 353 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], |
354 'sources!': [ | 354 'sources!': [ |
355 'third_party/purify/pure_api.c', | 355 'third_party/purify/pure_api.c', |
356 'base_drag_source.cc', | 356 'base_drag_source.cc', |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
562 'target_name': 'debug_message', | 562 'target_name': 'debug_message', |
563 'type': 'executable', | 563 'type': 'executable', |
564 'sources': [ | 564 'sources': [ |
565 'debug_message.cc', | 565 'debug_message.cc', |
566 ], | 566 ], |
567 }, | 567 }, |
568 ], | 568 ], |
569 }], | 569 }], |
570 ], | 570 ], |
571 } | 571 } |
OLD | NEW |