| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 'common/platform_util_mac.mm', | 243 'common/platform_util_mac.mm', |
| 244 'common/platform_util_win.cc', | 244 'common/platform_util_win.cc', |
| 245 'common/plugin_messages.h', | 245 'common/plugin_messages.h', |
| 246 'common/plugin_messages_internal.h', | 246 'common/plugin_messages_internal.h', |
| 247 'common/pref_member.cc', | 247 'common/pref_member.cc', |
| 248 'common/pref_member.h', | 248 'common/pref_member.h', |
| 249 'common/pref_names.cc', | 249 'common/pref_names.cc', |
| 250 'common/pref_names.h', | 250 'common/pref_names.h', |
| 251 'common/pref_service.cc', | 251 'common/pref_service.cc', |
| 252 'common/pref_service.h', | 252 'common/pref_service.h', |
| 253 'common/process_watcher.cc', | 253 'common/process_watcher_posix.cc', |
| 254 'common/process_watcher_win.cc', |
| 254 'common/process_watcher.h', | 255 'common/process_watcher.h', |
| 255 'common/property_bag.cc', | 256 'common/property_bag.cc', |
| 256 'common/property_bag.h', | 257 'common/property_bag.h', |
| 257 'common/quarantine_mac.h', | 258 'common/quarantine_mac.h', |
| 258 'common/quarantine_mac.mm', | 259 'common/quarantine_mac.mm', |
| 259 'common/ref_counted_util.h', | 260 'common/ref_counted_util.h', |
| 260 'common/render_messages.h', | 261 'common/render_messages.h', |
| 261 'common/render_messages_internal.h', | 262 'common/render_messages_internal.h', |
| 262 'common/resource_bundle.cc', | 263 'common/resource_bundle.cc', |
| 263 'common/resource_bundle.h', | 264 'common/resource_bundle.h', |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 'common/temp_scaffolding_stubs.cc', | 342 'common/temp_scaffolding_stubs.cc', |
| 342 'common/temp_scaffolding_stubs.h', | 343 'common/temp_scaffolding_stubs.h', |
| 343 ], | 344 ], |
| 344 }, { # else: OS != "win" | 345 }, { # else: OS != "win" |
| 345 'sources!': [ | 346 'sources!': [ |
| 346 'common/gfx/emf.cc', | 347 'common/gfx/emf.cc', |
| 347 'common/gfx/icon_util.cc', | 348 'common/gfx/icon_util.cc', |
| 348 'common/classfactory.cc', | 349 'common/classfactory.cc', |
| 349 'common/drag_drop_types.cc', | 350 'common/drag_drop_types.cc', |
| 350 'common/os_exchange_data.cc', | 351 'common/os_exchange_data.cc', |
| 351 'common/process_watcher.cc', | |
| 352 ], | 352 ], |
| 353 }], | 353 }], |
| 354 ], | 354 ], |
| 355 }, | 355 }, |
| 356 { | 356 { |
| 357 'target_name': 'browser', | 357 'target_name': 'browser', |
| 358 'type': '<(library)', | 358 'type': '<(library)', |
| 359 'dependencies': [ | 359 'dependencies': [ |
| 360 'common', | 360 'common', |
| 361 'resources', | 361 'resources', |
| (...skipping 2633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2995 '../tools/code_coverage/coverage_posix.py', | 2995 '../tools/code_coverage/coverage_posix.py', |
| 2996 '--directory', | 2996 '--directory', |
| 2997 '<(PRODUCT_DIR)' ], | 2997 '<(PRODUCT_DIR)' ], |
| 2998 }, | 2998 }, |
| 2999 ], # 'actions' | 2999 ], # 'actions' |
| 3000 }, | 3000 }, |
| 3001 ] | 3001 ] |
| 3002 }], | 3002 }], |
| 3003 ], # 'conditions' | 3003 ], # 'conditions' |
| 3004 } | 3004 } |
| OLD | NEW |