| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 }, | 136 }, |
| 137 'includes': [ '../build/grit_target.gypi' ], | 137 'includes': [ '../build/grit_target.gypi' ], |
| 138 'copies': [ | 138 'copies': [ |
| 139 { | 139 { |
| 140 'destination': '<(PRODUCT_DIR)', | 140 'destination': '<(PRODUCT_DIR)', |
| 141 'files': [ | 141 'files': [ |
| 142 '<(SHARED_INTERMEDIATE_DIR)/content/shell_resources.pak' | 142 '<(SHARED_INTERMEDIATE_DIR)/content/shell_resources.pak' |
| 143 ], | 143 ], |
| 144 }, | 144 }, |
| 145 ], | 145 ], |
| 146 }, { | 146 }, |
| 147 { |
| 147 'target_name': 'generate_content_shell_resources', | 148 'target_name': 'generate_content_shell_resources', |
| 148 'type': 'none', | 149 'type': 'none', |
| 149 'variables': { | 150 'variables': { |
| 150 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/content', | 151 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/content', |
| 151 }, | 152 }, |
| 152 'actions': [ | 153 'actions': [ |
| 153 { | 154 { |
| 154 'action_name': 'content_shell_resources', | 155 'action_name': 'content_shell_resources', |
| 155 'variables': { | 156 'variables': { |
| 156 'grit_grd_file': 'shell/shell_resources.grd', | 157 'grit_grd_file': 'shell/shell_resources.grd', |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 'conditions': [ | 347 'conditions': [ |
| 347 ['OS=="mac"', { | 348 ['OS=="mac"', { |
| 348 'targets': [ | 349 'targets': [ |
| 349 { | 350 { |
| 350 'target_name': 'content_shell_framework', | 351 'target_name': 'content_shell_framework', |
| 351 'type': 'shared_library', | 352 'type': 'shared_library', |
| 352 'product_name': '<(content_shell_product_name) Framework', | 353 'product_name': '<(content_shell_product_name) Framework', |
| 353 'mac_bundle': 1, | 354 'mac_bundle': 1, |
| 354 'mac_bundle_resources': [ | 355 'mac_bundle_resources': [ |
| 355 'shell/mac/English.lproj/MainMenu.xib', | 356 'shell/mac/English.lproj/MainMenu.xib', |
| 356 '<(SHARED_INTERMEDIATE_DIR)/content/shell_resources.pak' | 357 '<(PRODUCT_DIR)/content_shell.pak' |
| 357 ], | 358 ], |
| 358 'dependencies': [ | 359 'dependencies': [ |
| 359 'content_shell_lib', | 360 'content_shell_lib', |
| 360 ], | 361 ], |
| 361 'include_dirs': [ | 362 'include_dirs': [ |
| 362 '..', | 363 '..', |
| 363 ], | 364 ], |
| 364 'sources': [ | 365 'sources': [ |
| 365 'shell/shell_content_main.cc', | 366 'shell/shell_content_main.cc', |
| 366 'shell/shell_content_main.h', | 367 'shell/shell_content_main.h', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 'action': [ | 429 'action': [ |
| 429 '../build/mac/verify_no_objc.sh', | 430 '../build/mac/verify_no_objc.sh', |
| 430 ], | 431 ], |
| 431 }, | 432 }, |
| 432 ], | 433 ], |
| 433 }, # target content_shell_helper_app | 434 }, # target content_shell_helper_app |
| 434 ], | 435 ], |
| 435 }], # OS=="mac" | 436 }], # OS=="mac" |
| 436 ], | 437 ], |
| 437 } | 438 } |
| OLD | NEW |